How to make wysiwyg using Flutter?

7,601

Solution 1

You can use Angular Quill dart component.

See demo and source.

Or you can choose yabwe.

https://pub.dev/packages?q=wysiwyg

Solution 2

These are some options right now if you need a WYSIWYG editor for Flutter and don't mind that they are wrapping Javascript:

  1. Flutter Quill (based on Quill which is not active).

  2. Flutter Summernote (based on Summernote)

  3. Flutter HTML Editor Enhanced (also based on Summernote)

If you prefer another Javascript WYSIWYG library take a look at wrapping your own using the js package: https://pub.dev/packages/js

Share:
7,601
Admin
Author by

Admin

Updated on December 16, 2022

Comments

  • Admin
    Admin over 1 year

    I want to make wysiwyg like https://i.stack.imgur.com/wP3p6.png

    Do you know how to make it?