dartlangeditorflutterflutter-appsflutter-examplesflutter-packageflutter-widgetquillquill-deltaquilljsreactquillrich-textrich-text-editorwysiwygwysiwyg-editor
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
428 B
23 lines
428 B
3 years ago
|
# Flutter Quill Extensions
|
||
|
|
||
|
Helpers to support embed widgets in flutter_quill.
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
Set the `embedBuilders` and `embedToolbar` params in `QuillEditor` and `QuillToolbar` with the
|
||
|
values provided by this repository.
|
||
|
|
||
|
```
|
||
|
QuillEditor.basic(
|
||
|
controller: controller,
|
||
|
embedBuilders: FlutterQuillEmbeds.builders,
|
||
|
);
|
||
|
```
|
||
|
|
||
|
```
|
||
|
QuillToolbar.basic(
|
||
|
controller: controller,
|
||
|
embedButtons: FlutterQuillEmbeds.buttons(),
|
||
|
);
|
||
|
```
|