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.
 
 
 
 
 
Jonathan Salmon 99ab28bf01 Refactored embed button implementation 3 years ago
..
lib Refactored embed button implementation 3 years ago
.metadata Moved embed code to separate package 3 years ago
CHANGELOG.md Moved embed code to separate package 3 years ago
LICENSE Moved embed code to separate package 3 years ago
README.md Refactored embed button implementation 3 years ago
analysis_options.yaml Moved embed code to separate package 3 years ago
pubspec.yaml Moved embed code to separate package 3 years ago

README.md

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