# Flutter Quill

Flutter Quill

A rich text editor for Flutter

[![MIT License][license-badge]][license-link] [![PRs Welcome][prs-badge]][prs-link] [![Watch on GitHub][github-watch-badge]][github-watch-link] [![Star on GitHub][github-star-badge]][github-star-link] [![Watch on GitHub][github-forks-badge]][github-forks-link] [license-badge]: https://img.shields.io/github/license/singerdmx/flutter-quill.svg?style=for-the-badge [license-link]: ./LICENSE [prs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=for-the-badge [prs-link]: https://github.com/singerdmx/flutter-quill/issues [github-watch-badge]: https://img.shields.io/github/watchers/singerdmx/flutter-quill.svg?style=for-the-badge&logo=github&logoColor=ffffff [github-watch-link]: https://github.com/singerdmx/flutter-quill/watchers [github-star-badge]: https://img.shields.io/github/stars/singerdmx/flutter-quill.svg?style=for-the-badge&logo=github&logoColor=ffffff [github-star-link]: https://github.com/singerdmx/flutter-quill/stargazers [github-forks-badge]: https://img.shields.io/github/forks/singerdmx/flutter-quill.svg?style=for-the-badge&logo=github&logoColor=ffffff [github-forks-link]: https://github.com/singerdmx/flutter-quill/network/members --- FlutterQuill is a rich text editor and a [Quill] component for [Flutter]. This library is a WYSIWYG (What You See Is What You Get) editor built for the modern Android, iOS, web and desktop platforms. Check out our [Youtube Playlist] or [Code Introduction](./doc/code_introduction.md) to take a detailed walkthrough of the code base. You can join our [Slack Group] for discussion. > [!NOTE] > If you are viewing this page from [pub.dev](https://pub.dev/) page, then you > might have some issues with opening some links, open it in the GitHub repo instead. ## πŸ“š Table of contents - [Flutter Quill](#flutter-quill) - [πŸ“š Table of contents](#-table-of-contents) - [πŸ“Έ Screenshots](#-screenshots) - [πŸ“¦ Installation](#-installation) - [πŸ›  Platform Specific Configurations](#-platform-specific-configurations) - [πŸš€ Usage](#-usage) - [πŸ”„ Migration](#-migration) - [πŸ”€ Input / Output](#-input--output) - [πŸ”— Links](#-links) - [βš™οΈ Configurations](#️-configurations) - [πŸ”— Links](#-links-1) - [πŸ–‹ Font Family](#-font-family) - [πŸ“¦ Embed Blocks](#-embed-blocks) - [πŸ› οΈ Using the embed blocks from `flutter_quill_extensions`](#️-using-the-embed-blocks-from-flutter_quill_extensions) - [πŸ”— Links](#-links-2) - [πŸ”„ Conversion to HTML](#-conversion-to-html) - [πŸ“ Spelling checker](#-Spelling-checker) - [🌐 Translation](#-translation) - [πŸ§ͺ Testing](#-testing) - [πŸ‘₯ Contributors](#-contributors) ## πŸ“Έ Screenshots
Tap to show/hide screenshots
Screenshot 1 Screenshot 2 Screenshot 3 Screenshot 4
## πŸ“¦ Installation ```yaml dependencies: flutter_quill: ^ ```

OR

```yaml dependencies: flutter_quill: git: url: https://github.com/singerdmx/flutter-quill.git ref: v ``` > [!TIP] > Using the latest version and reporting any issues you encounter on GitHub will greatly contribute to the improvement > of the library. > Your input and insights are valuable in shaping a stable and reliable version for all the developers. Thank you for > being part of the open-source community! > ## πŸ›  Platform Specific Configurations The `flutter_quill` package uses the following plugins: 1. [`url_launcher`](https://pub.dev/packages/url_launcher) to open links. 2. [`device_info_plus`](https://pub.dev/packages/device_info_plus) to view info about the current device. 3. [`flutter_keyboard_visibility`](https://pub.dev/packages/flutter_keyboard_visibility) to listen for keyboard visibility changes. All of them don't require any platform-specific setup. > [!NOTE] > Starting from Flutter Quill `9.4.x`, [super_clipboard](https://pub.dev/packages/super_clipboard) has been moved > to [FlutterQuill Extensions], to use rich text pasting, support pasting images, and gif files from external apps or websites, take a look > at `flutter_quill_extensions` Readme. ## πŸš€ Usage Instantiate a controller: ```dart QuillController _controller = QuillController.basic(); ``` Use the `QuillEditor`, and `QuillSimpleToolbar` widgets, and attach the `QuillController` to them: ```dart QuillSimpleToolbar( controller: _controller, configurations: const QuillSimpleToolbarConfigurations(), ), Expanded( child: QuillEditor.basic( controller: _controller, configurations: const QuillEditorConfigurations(), ), ) ``` Dispose of the `QuillController` in the `dispose` method: ```dart @override void dispose() { _controller.dispose(); super.dispose(); } ``` Check out [Sample Page] for more advanced usage. ## πŸ”„ Migration Starting from version `8.0.0` We have added [Migration Guide](/doc/migration.md) for migration from different versions ## πŸ”€ Input / Output This library uses [Quill Delta](https://quilljs.com/docs/delta/) to represent the document content. The Delta format is a compact and versatile way to describe document changes. It consists of a series of operations, each representing an insertion, deletion, or formatting change within the document. Don’t be confused by its name Deltaβ€”Deltas represents both documents and changes to documents. If you think of Deltas as the instructions for going from one document to another, the way Deltas represents a document is by expressing the instructions starting from an empty document. * Use `_controller.document.toDelta()` to extract the deltas. * Use `_controller.document.toPlainText()` to extract plain text. FlutterQuill provides some JSON serialization support so that you can save and open documents. To save a document as JSON, do something like the following: ```dart final json = jsonEncode(_controller.document.toDelta().toJson()); ``` You can then write this to storage. To open a FlutterQuill editor with an existing JSON representation that you've previously stored, you can do something like this: ```dart final json = jsonDecode(r'{"insert":"hello\n"}'); _controller.document = Document.fromJson(json); ``` ### πŸ”— Links - [Quill Delta](https://quilljs.com/docs/delta/) - [Quill Delta Formats](https://quilljs.com/docs/formats) - [Why Quill](https://quilljs.com/guides/why-quill/) - [Quill JS Configurations](https://quilljs.com/docs/configuration/) - [Quill JS Interactive Playground](https://quilljs.com/playground/) - [Quill JS GitHub repo](https://github.com/quilljs/quill) ## βš™οΈ Configurations The `QuillToolbar` and `QuillEditor` widgets let you customize a lot of things [Sample Page] provides sample code for advanced usage and configuration. ### πŸ”— Links - [Using Custom App Widget](./doc/configurations/using_custom_app_widget.md) - [Localizations Setup](./doc/configurations/localizations_setup.md) - [Font Size](./doc/configurations/font_size.md) - [Font Family](#font-family) - [Custom Toolbar buttons](./doc/configurations/custom_buttons.md) - [Search](./doc/configurations/search.md) ### πŸ–‹ Font Family To use your own fonts, update your [Assets](./example/assets/fonts) folder and pass in `fontFamilyValues`. More details on [this commit](https://github.com/singerdmx/flutter-quill/commit/71d06f6b7be1b7b6dba2ea48e09fed0d7ff8bbaa), [this article](https://stackoverflow.com/questions/55075834/fontfamily-property-not-working-properly-in-flutter) and [this](https://www.flutterbeads.com/change-font-family-flutter/). ## πŸ“¦ Embed Blocks As of version 6.0, embed blocks are not provided by default as part of this package. Instead, this package provides an interface for all the users to provide their own implementations for embed blocks. Implementations for image, video, and formula embed blocks are proved in a separate package [`flutter_quill_extensions`](https://pub.dev/packages/flutter_quill_extensions). Provide a list of embed ### πŸ› οΈ Using the embed blocks from `flutter_quill_extensions` To see how to use the extension package, please take a look at the [README](./flutter_quill_extensions/README.md) of [FlutterQuill Extensions] ### πŸ”— Links - [Custom Embed Blocks](./doc/custom_embed_blocks.md) - [Custom Toolbar](./doc/custom_toolbar.md) ## πŸ”„ Conversion to HTML > [!CAUTION] > **Converting HTML or Markdown to Delta is highly experimental and shouldn't be used for production applications**, while the current implementation we have internally is far from perfect, it could improved however **it will likely not work as expected**, due to differences between **HTML** and **Delta**, see this [Quill JS Comment #311458570](https://github.com/slab/quill/issues/1551#issuecomment-311458570) for more info.
> We only use it **internally** as it is more suitable for our specific use case, copying content from external websites and pasting it into the editor previously breaks the styles, while the current implementation is not designed for converting a **full Document** from other formats to **Delta**, it provides a better user experience and doesn't have many downsides. > > The support for converting HTML to **Quill Delta** is quite experimental and used internally when pasting HTML content from the clipboard to the Quill Document. > > Converting **Delta** from/to **HTML** is not a standard feature in [Quill JS](https://github.com/slab/quill) or [FlutterQuill]. > [!IMPORTANT] > Converting **HTML** to **Delta** usually won't work as expected, we highly recommend storing the **Document** as **Delta JSON** in the database instead of other formats (e.g., HTML, Markdown, PDF, Microsoft Word, Google Docs, Apple Pages, XML, CSV, etc...) > > Converting between **HTML** and **Delta** JSON is generally not recommended due to their structural and functional differences. > > Sometimes you might want to convert between **HTML** and **Delta** for specific use cases: > > 1. **Migration**: If you're using an existing system that stores the data in HTML and want to convert the document data to **Delta**. > 2. **Sharing**: For example, if you want to share the Document **Delta** somewhere or send it as an email. > 3. **Save as**: If your app has a feature that allows converting Documents to other formats. > 4. **Rich text pasting**: If you copy some content from websites or apps, and want to paste it into the app. > 5. **SEO**: In case you want to use HTML for SEO support. The following packages can be used: 1. [`vsc_quill_delta_to_html`](https://pub.dev/packages/vsc_quill_delta_to_html): To convert **Delta** to HTML. 2. [`flutter_quill_delta_from_html`](https://pub.dev/packages/flutter_quill_delta_from_html): To Convert **HTML** to **Delta**. 3. [`flutter_quill_to_pdf`](https://pub.dev/packages/flutter_quill_to_pdf): To convert **Delta** To **PDF**. 4. [`markdown_quill`](https://pub.dev/packages/markdown_quill): To convert **Markdown** To **Delta** and vice versa. ## πŸ“ Spelling checker A spell checker is a software tool or feature integrated into various text processing applications that automatically identifies and corrects spelling errors in a written document. It works by comparing the words in the text against a built-in dictionary. If a word isn't found in the dictionary or doesn't match any known word patterns, the spell checker highlights it as a potential error. #### Benefits of a spell checker include: * Improved Accuracy: It helps writers avoid common spelling mistakes, ensuring that the text is free of errors. * Time-Saving: Automatically detecting errors reduces the time needed for manual proofreading. * Enhanced Professionalism: Correctly spelled words contribute to the overall professionalism of documents, which is crucial in academic, business, and formal writing. * Multilingual Support: Many spell checkers support multiple languages, making it easier for users to write accurately in different languages. > [!IMPORTANT] > The spell checker usually does not work as expected in most cases. **Many translations are not supported** such as: `Chinese`, `Japanese`, `Korean`, `Hebrew`, `Arabic`, `Russian`, etc. For now it is a purely **experimental** feature that may have **code that will be modified** in future versions. #### The translations supported so far are: * **German** - `de` (may contain errors or missing words) * **English** - `en` (currently adding missing translations) * **Spanish** - `es` (currently adding missing translations) * **French** - `fr` (may contain errors or missing words) * **Italian** - `it` (currently adding missing translations) * **Norwegian** - `no` (may contain errors or missing words) * **Portuguese** - `pt` (may contain errors or missing words) * **Swedish** - `sv` (may contain errors or missing words) _**Note**: If you have knowledge about any of these available languages or the unsupported ones, you can make a pull request to add support or add words that are not currently in [simple_spell_checker](https://github.com/CatHood0/simple_spell_checker)_. In order to activate this functionality you can use the following code: ```dart // you can use the language of your preference or directly select the language of the operating system final language = 'en'; // or Localizations.localeOf(context).languageCode FlutterQuillExtensions.useSpellCheckerService(language); ``` When you no longer need to have the Spell checker activated you can simply use `dispose()` of the `SpellCheckerServiceProvider` class: ```dart // dispose all service and it cannot be used after this SpellCheckerServiceProvider.dispose(); ``` If what we want is to **close the StreamControllers** without deleting the values that are already stored in it, we can set `onlyPartial` to `true`. ```dart // it can be still used by the editor SpellCheckerServiceProvider.dispose(onlyPartial: true); ``` One use of this would be having the opportunity to **activate and deactivate** the service when we want, we can see this in the example that we have in this package, in which you can see that on each screen, we have a button that dynamically activates and deactivates the service. To do this is pretty simple: ```dart SpellCheckerServiceProvider.toggleState(); // use isServiceActive to get the state of the service SpellCheckerServiceProvider.isServiceActive(); setState(() {}); ``` Open this [page](https://pub.dev/packages/simple_spell_checker) for more information. ## 🌐 Translation The package offers translations for the quill toolbar and editor, it will follow the system locale unless you set your own locale. Open this [page](./doc/translation.md) for more info ## πŸ§ͺ Testing Please use [flutter_quill_test](https://pub.dev/packages/flutter_quill_test) for testing ## πŸ‘₯ Contributors - Special thanks to everyone who has contributed to this project... Contributors
Made with [contrib.rocks](https://contrib.rocks). - Thanks to the [Flutter Team](https://flutter.dev/) - Thanks to the welcoming community, the volunteers who helped along the journey, developers, contributors and contributors who put time and effort into everything including making all the libraries, tools, and the information we rely on - We are incredibly grateful to many individuals and organizations who have played a role in the project. This includes the welcoming community, dedicated volunteers, talented developers and contributors, and the creators of the open-source tools we rely on. We welcome all contributions! Please follow these guidelines when contributing to the project. See [CONTRIBUTING.md](./CONTRIBUTING.md) for more details.
The [CONTRIBUTING.md](./CONTRIBUTING.md) has development notes, if you're planning on contributing to the package, please consider reading it. [Quill]: https://quilljs.com/docs/formats [Flutter]: https://github.com/flutter/flutter [FlutterQuill]: https://pub.dev/packages/flutter_quill [FlutterQuill Extensions]: https://pub.dev/packages/flutter_quill_extensions [ReactQuill]: https://github.com/zenoamaro/react-quill [Youtube Playlist]: https://youtube.com/playlist?list=PLbhaS_83B97vONkOAWGJrSXWX58et9zZ2 [Slack Group]: https://join.slack.com/t/bulletjournal1024/shared_invite/zt-fys7t9hi-ITVU5PGDen1rNRyCjdcQ2g [Sample Page]: https://github.com/singerdmx/flutter-quill/blob/master/example/lib/screens/quill/quill_screen.dart