Update README.md

pull/1458/head
Ahmed Hnewa 1 year ago committed by GitHub
parent 04a391a76a
commit 0f6a5051dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      README.md

@ -85,15 +85,18 @@ and then embed the toolbar and the editor, within your app. For example:
```dart
QuillProvider(
configurations: QuillConfigurations(controller: _controller),
configurations: QuillConfigurations(
controller: _controller,
editorConfigurations: QuillEditorConfigurations(
readOnly: _isReadonly,
),
),
child: Column(
children: [
QuillToolbar.basic(),
Expanded(
child: Container(
child: QuillEditor.basic(
readOnly: false, // true for view only mode
),
child: QuillEditor.basic(),
),
)
],

Loading…
Cancel
Save