Rich text editor for Flutter
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.
 
 
 
 
 
Ahmed Hnewa 3e0ed1212a
Add a event that triggers after removing the image from the editor && delete unused dependencies and upgrade all packages and plugins and remove gallery_saver which has not been updated for more than 23 months, it was a great plugin but it old now, and I also add some simple documentation and other minor improvements (#1413)
2 years ago
..
lib Add a event that triggers after removing the image from the editor && delete unused dependencies and upgrade all packages and plugins and remove gallery_saver which has not been updated for more than 23 months, it was a great plugin but it old now, and I also add some simple documentation and other minor improvements (#1413) 2 years ago
.metadata Embed refactor (#933) 3 years ago
CHANGELOG.md flutter_quill_extensions: revert #1355 and bump image_picker dependency 2 years ago
LICENSE Update flutter_quill_extensions package ready for publishing (#935) 3 years ago
README.md Moved onVideoInit to class parameter on embed builder (#934) 3 years ago
analysis_options.yaml Embed refactor (#933) 3 years ago
pubspec.yaml Add a event that triggers after removing the image from the editor && delete unused dependencies and upgrade all packages and plugins and remove gallery_saver which has not been updated for more than 23 months, it was a great plugin but it old now, and I also add some simple documentation and other minor improvements (#1413) 2 years ago

README.md

Flutter Quill Extensions

Helpers to support embed widgets in flutter_quill. See Flutter Quill for details of use.

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(),
);