Html wysiwyg editor in flutter?

3,004

you can try my package html_editor_enhanced which does not have the getText() error and uses fully native controls with plenty of customization. It looks like this:

enter image description here

Share:
3,004
mike
Author by

mike

Updated on December 23, 2022

Comments

  • mike
    mike over 1 year

    is there any way to use summernote or wysiwyg editor in Flutter textfield editor?

    I used flutter_html_editor, Zefyr, html_editor and flutter_summernote packages, but these dont worked well and they returned null value in the following code:

        final _etEditor = await keyEditor.currentState.getText();
    

    I got the following error:

    E/flutter ( 6639): [ERROR:flutter/lib/ui/ui_dart_state.cc(166)] Unhandled Exception: NoSuchMethodError: The method 'getText' was called on null.
    E/flutter ( 6639): Receiver: null
    E/flutter ( 6639): Tried calling: getText()
    

    I want that the textfield become like the attached image. How to fix it?

    Can I implement a package like these, or is there any solution to make summernote or wysiwyg textfield editor which can convert html tags in Flutter?

    enter image description here

    thanks