A Flutter package that provides a WYSIWYG editor

  Editor

Flutter Html Editor – Enhanced

Flutter HTML Editor Enhanced is a text editor for Android, iOS, and Web to help write WYSIWYG HTML code with the Summernote JavaScript wrapper.

Note that the API shown in this README.md file shows only a part of the documentation and, also, conforms to the GitHub master branch only! So, here you could have methods, options, and events that aren’t published/released yet! If you need a specific version, please change the GitHub branch of this repository to your version or use the online API Reference (recommended).

Video ExampleLight Mode andToolbarType.nativeGridDark Mode andToolbarPosition.belowEditor
Flutter Web

Table of Contents:

  • “Enhanced”? In what ways?
  • Setup
  • Usage
  • API Reference
    • Parameters Table
    • Methods Table
    • Callbacks Table
    • Getters
    • Toolbar
    • Plugins
    • HtmlEditorOptions Parameters
      • autoAdjustHeight
      • adjustHeightForKeyboard
      • filePath
      • shouldEnsureVisible
      • webInitialScripts
    • HtmlToolbarOptions Parameters
      • customToolbarButtons and customToolbarButtonsInsertionIndices
      • linkInsertInterceptormediaLinkInsertInterceptorotherFileLinkInsertmediaUploadInterceptor, and onOtherFileUpload
      • onButtonPressed and onDropdownChanged
      • toolbarPosition: ToolbarPosition.custom
    • HtmlEditorController Parameters
      • processInputHtmlprocessOutputHtml, and processNewLineAsBr
  • Examples
  • Notes
  • FAQ
  • License
  • Contribution Guide

In what ways is this package “enhanced”?

  1. It has official support for Flutter Web, with nearly all mobile features supported. Keyboard shortcuts like Ctrl+B for bold work as well!
  2. It has fully native Flutter-based widget controls
  3. It uses a heavily optimized WebView to deliver the best possible experience when using the editor
  4. It doesn’t use a local server to load the HTML code containing the editor. Instead, this package simply loads the HTML file, which improves performance and the editor’s startup time.
  5. It uses a controller-based API. You don’t have to fiddle around with GlobalKeys to access methods, instead you can simply call <controller name>.<method name> anywhere you want.
  6. It has support for many of Summernote’s methods
  7. It has support for all of Summernote’s callbacks
  8. It exposes the InAppWebViewController so you can customize the WebView however you like – you can even load your own HTML code and inject your own JavaScript for your use cases.
  9. It has support for dark mode
  10. It has support for extremely granular toolbar customization

More is on the way! File a feature request or contribute to the project if you’d like to see other features added.

Setup

Add html_editor_enhanced: ^2.2.0 as dependency to your pubspec.yaml.

Additional setup is required on iOS to allow the user to pick files from storage. See here for more details.

For images, the package uses FileType.image, for video FileType.video, for audio FileType.audio, and for any other file FileType.any. You can just complete setup for the specific buttons you plan to enable in the editor.

v2.0.0 Migration Guide:

Migration Guide

Basic Usage

import 'package:html_editor/html_editor.dart';

HtmlEditorController controller = HtmlEditorController();

@override Widget build(BuildContext context) {
    return HtmlEditor(
        controller: controller, //required
        htmlEditorOptions: HtmlEditorOptions(
          hint: "Your text here...",
          //initalText: "text content initial, if any",
        ),   
        otherOptions: OtherOptions(
          height: 400,
        ),
    );
}

Important note for Web:

At the moment, there is quite a bit of flickering and repainting when having many UI elements draw over IframeElements. See https://github.com/flutter/flutter/issues/71888 for more details.

The current workaround is to build and/or run your Web app with flutter run --web-renderer html and flutter build web --web-renderer html.

Follow https://github.com/flutter/flutter/issues/80524 for updates on a potential fix, in the meantime the above solution should resolve the majority of the flickering issues.

API Reference

For the full API reference, see here.

For a full example, see here.

Below, you will find brief descriptions of the parameters the HtmlEditor widget accepts and some code snippets to help you use this package.

Parameters – HtmlEditor

ParameterTypeDefaultDescription
controllerHtmlEditorControlleremptyRequired param. Create a controller instance and pass it to the widget. This ensures that any methods called work only on their HtmlEditor instance, allowing you to use multiple HTML widgets on one page.
callbacksCallbacksemptyCustomize the callbacks for various events
optionsHtmlEditorOptionsHtmlEditorOptions()Class to set various options. See below for more details.
pluginsList<Plugins>emptyCustomize what plugins are activated. See below for more details.
toolbarList<Toolbar>See the widget’s constructorCustomize what buttons are shown on the toolbar, and in which order. See below for more details.

Parameters – HtmlEditorController

ParameterTypeDefaultDescription
processInputHtmlbooltrueDetermines whether processing occurs on any input HTML (e.g. escape quotes, apostrophes, and remove /ns)
processNewLineAsBrboolfalseDetermines whether a new line (\n) becomes a <br/> in any input HTML
processOutputHtmlbooltrueDetermines whether processing occurs on any output HTML (e.g. <p><br/><p> becomes "")

Parameters – HtmlEditorOptions

ParameterTypeDefaultDescription
autoAdjustHeightbooltrueAutomatically adjust the height of the text editor by analyzing the HTML height once the editor is loaded. Recommended value: true. See below for more details.
adjustHeightForKeyboardbooltrueAdjust the height of the editor if the keyboard is active and it overlaps the editor to prevent the overlap. Recommended value: true, only works on mobile. See below for more details.
darkModeboolnullSets the status of dark mode – false: always light, null: follow system, true: always dark
filePathStringnullAllows you to specify your own HTML to be loaded into the webview. You can create a custom page with Summernote, or theoretically load any other editor/HTML.
hintStringemptyPlaceholder hint text
initialTextStringemptyInitial text content for text editor
inputTypeHtmlInputTypeHtmlInputType.textAllows you to set how the virtual keyboard displays for the editor on mobile devices
mobileContextMenuContextMenunullCustomize the context menu when a user selects text in the editor. See docs for ContextMenu here
mobileLongPressDurationDurationDuration(milliseconds: 500)Set the duration until a long-press is recognized
mobileInitialScriptsUnmodifiableListView<UserScript>nullEasily inject scripts to perform actions like changing the background color of the editor. See docs for UserScript here
webInitialScriptsUnmodifiableListView<WebScript>nullEasily inject scripts to perform actions like changing the background color of the editor. See below for more details.
shouldEnsureVisibleboolfalseScroll the parent Scrollable to the top of the editor widget when the webview is focused. Do not use this parameter if HtmlEditor is not inside a Scrollable. See below for more details.

Parameters – HtmlToolbarOptions

Toolbar Options

ParameterTypeDefaultDescription
audioExtensionsList<String>nullAllowed extensions when inserting audio files
customToolbarButtonsList<Widget>emptyAdd custom buttons to the toolbar
customToolbarInsertionIndicesList<int>emptyAllows you to set where each custom toolbar button should be inserted into the toolbar widget list
defaultToolbarButtonsList<Toolbar>(all constructors active)Allows you to hide/show certain buttons or certain groups of buttons
otherFileExtensionsList<String>nullAllowed extensions when inserting files other than image/audio/video
imageExtensionsList<String>nullAllowed extensions when inserting images
initiallyExpandedboolfalseSets whether the toolbar is initially expanded or not when using ToolbarType.nativeExpandable
linkInsertInterceptorFutureOr<bool> Function(String, String, bool)nullIntercept any links inserted into the editor. The function passes the display text, the URL, and whether it opens a new tab.
mediaLinkInsertInterceptorFutureOr<bool> Function(String, InsertFileType)nullIntercept any media links inserted into the editor. The function passes the URL and InsertFileType which indicates which file type was inserted
mediaUploadInterceptorFutureOr<bool> Function(PlatformFile, InsertFileType)nullIntercept any media files inserted into the editor. The function passes PlatformFile which holds all relevant file data, and InsertFileType which indicates which file type was inserted.
onButtonPressedFutureOr<bool> Function(ButtonType, bool?, void Function()?)nullIntercept any button presses. The function passes the enum for the pressed button, the current selected status of the button (if applicable) and a function to update the status (if applicable).
onDropdownChangedFutureOr<bool> Function(DropdownType, dynamic, void Function(dynamic)?)nullIntercept any dropdown changes. The function passes the enum for the changed dropdown, the changed value, and a function to update the changed value (if applicable).
onOtherFileLinkInsertFunction(String)nullIntercept file link inserts other than image/audio/video. This handler is required when using the other file button, as the package has no built-in handlers
onOtherFileUploadFunction(PlatformFile)nullIntercept file uploads other than image/audio/video. This handler is required when using the other file button, as the package has no built-in handlers
otherFileExtensionsList<String>nullAllowed extensions when inserting files other than image/audio/video
toolbarTypeToolbarTypeToolbarType.nativeScrollableCustomize how the toolbar is displayed (gridview, scrollable, or expandable)
toolbarPositionToolbarPositionToolbarPosition.aboveEditorSet where the toolbar is displayed (above or below the editor)
videoExtensionsList<String>nullAllowed extensions when inserting videos

Styling Options

ParameterTypeDefaultDescription
renderBorderboolfalseRender a border around dropdowns and buttons
textStyleTextStylenullThe TextStyle to use when displaying dropdowns and buttons
separatorWidgetWidgetVerticalDivider(indent: 2, endIndent: 2, color: Colors.grey)Set the widget that separates each group of buttons/dropdowns
renderSeparatorWidgetbooltrueWhether or not the separator widget should be rendered
toolbarItemHeightdouble36Set the height of dropdowns and buttons. Buttons will maintain a square aspect ratio.
gridViewHorizontalSpacingdouble5The horizontal spacing to use between button groups when displaying the toolbar as ToolbarType.nativeGrid
gridViewVerticalSpacingdouble5The vertical spacing to use between button groups when diplaying the toolbar as ToolbarType.nativeGrid

Styling Options – applies to dropdowns only

ParameterTypeDefault
dropdownElevationint8
dropdownIconWidgetnull
dropdownIconColorColornull
dropdownIconSizedouble24
dropdownItemHeightdoublekMinInteractiveDimension (48)
dropdownFocusColorColornull
dropdownBackgroundColorColornull
dropdownMenuDirectionDropdownMenuDirectionnull
dropdownMenuMaxHeightdoublenull
dropdownBoxDecorationBoxDecorationnull

Styling Options – applies to buttons only

ParameterTypeDefault
buttonColorColornull
buttonSelectedColorColornull
buttonFillColorColornull
buttonFocusColorColornull
buttonHighlightColorColornull
buttonHoverColorColornull
buttonSplashColorColornull
buttonBorderColorColornull
buttonSelectedBorderColorColornull
buttonBorderRadiusBorderRadiusnull
buttonBorderWidthdoublenull

Parameters – Other Options

ParameterTypeDefaultDescription
decorationBoxDecorationnullBoxDecoration that surrounds the widget
heightdoublenullHeight of the widget (includes toolbar and editing area)

Methods

Access these methods like this: <controller name>.<method name>

MethodArgument(s)Returned Value(s)Description
addNotification()String html, NotificationType notificationTypeN/AAdds a notification to the bottom of the editor with the provided HTML content. NotificationType determines how it is styled.
clear()N/AN/AResets the HTML editor to its default state
clearFocus()N/AN/AClears focus for the webview and resets the height to the original height on mobile. Do not use this method in Flutter Web.
disable()N/AN/ADisables the editor (a gray mask is applied and all touches are absorbed)
enable()N/AN/AEnables the editor
execCommand()String command, String argument (optional)N/AAllows you to run any execCommand command easily. See the MDN Docs for usage.
getText()N/AFuture<String>Returns the current HTML in the editor
insertHtml()StringN/AInserts the provided HTML string into the editor at the current cursor position. Do not use this method for plaintext strings.
insertLink()String text, String url, bool isNewWindowN/AInserts a hyperlink using the provided text and url into the editor at the current cursor position. isNewWindow defines whether a new browser window is launched if the link is tapped.
insertNetworkImage()String url, String filename (optional)N/AInserts an image using the provided url and optional filename into the editor at the current cursor position. The image must be accessible via a URL.
insertText()StringN/AInserts the provided text into the editor at the current cursor position. Do not use this method for HTML strings.
recalculateHeight()N/AN/ARecalculates the height of the editor by re-evaluating document.body.scrollHeight
redo()N/AN/ARedoes the last command in the editor
reloadWeb()N/AN/AReloads the webpage in Flutter Web. This is mainly provided to refresh the text editor theme when the theme is changed. Do not use this method in Flutter Mobile.
removeNotification()N/AN/ARemoves the current notification from the bottom of the editor
resetHeight()N/AN/AResets the height of the webview to the original height. Do not use this method in Flutter Web.
setHint()StringN/ASets the current hint text of the editor
setFocus()N/AN/AIf the pointer is in the webview, the focus will be set to the editor box
setFullScreen()N/AN/ASets the editor to take up the entire size of the webview
setText()StringN/ASets the current text in the HTML to the input HTML string
toggleCodeview()N/AN/AToggles between the code view and the rich text view
undo()N/AN/AUndoes the last command in the editor

Callbacks

Every callback is defined as a Function(<parameters in some cases>). See the documentation for more specific details on each callback.

CallbackParameter(s)Description
onBeforeCommandStringCalled before certain commands are called (like undo and redo), passes the HTML in the editor before the command is called
onChangeContentStringCalled when the content of the editor changes, passes the current HTML in the editor
onChangeCodeviewStringCalled when the content of the codeview changes, passes the current code in the codeview
onChangeSelectionEditorSettingsCalled when the current selection of the editor changes, passes all editor settings (e.g. bold/italic/underline, color, text direction, etc).
onDialogShownN/ACalled when either the image, link, video, or help dialogs are shown
onEnterN/ACalled when enter/return is pressed
onFocusN/ACalled when the rich text field gains focus
onBlurN/ACalled when the rich text field or the codeview loses focus
onBlurCodeviewN/ACalled when the codeview either gains or loses focus
onImageLinkInsertStringCalled when an image is inserted via URL, passes the URL of the image
onImageUploadFileUploadCalled when an image is inserted via upload, passes FileUpload which holds filename, date modified, size, and MIME type
onImageUploadErrorFileUploadStringUploadErrorCalled when an image fails to inserted via upload, passes FileUpload which may hold filename, date modified, size, and MIME type (or be null), String which is the base64 (or null), and UploadError which describes the type of error
onInitN/ACalled when the rich text field is initialized and JavaScript methods can be called
onKeyDownintCalled when a key is downed, passes the keycode of the downed key
onKeyUpintCalled when a key is released, passes the keycode of the released key
onMouseDownN/ACalled when the mouse/finger is downed
onMouseUpN/ACalled when the mouse/finger is released
onPasteN/ACalled when content is pasted into the editor
onScrollN/ACalled when editor box is scrolled

Getters

Currently, the package has one getter: <controller name>.editorController. This returns the InAppWebViewController, which manages the webview that displays the editor.

This is extremely powerful, as it allows you to create your own custom methods and implementations directly in your app. See flutter_inappwebview for documentation on the controller.

This getter should not be used in Flutter Web. If you are making a cross platform implementation, please use kIsWeb to check the current platform in your code.

Toolbar

This API allows you to customize the toolbar in a nice, readable format.

By default, the toolbar will have all buttons enabled except the “other file” button, because the plugin cannot handle those files out of the box.

Here’s what that a custom implementation could look like:

HtmlEditorController controller = HtmlEditorController();
Widget htmlEditor = HtmlEditor(
  controller: controller, //required
  //other options
  toolbarOptions: HtmlToolbarOptions(
    defaultToolbarButtons: [
        StyleButtons(),
        ParagraphButtons(lineHeight: false, caseConverter: false)
    ]
  )
);

If you leave the Toolbar constructor blank (like Style() above), then the package interprets that you want all the buttons for the Style group to be visible.

If you want to remove certain buttons from the group, you can set their button name to false, as shown in the example above.

Order matters! Whatever group you set first will be the first group of buttons to display.

If you don’t want to show an entire group of buttons, simply don’t include their constructor in the Toolbar list! This means that if you want to disable just one button, you still have to provide all other constructors.

You can also create your own toolbar buttons! See below for more details.

Plugins

This API allows you to add certain Summernote plugins from the Summernote Awesome library.

Currently the following plugins are supported:

  1. Summernote Case Converter – Convert the selected text to all lowercase, all uppercase, sentence case, or title case. Supported via a dropdown in the toolbar in ParagraphButtons.
  2. Summernote List Styles – Customize the ul and ol list style. Supported via a dropdown in the toolbar in ListButtons.
  3. Summernote RTL – Switch the currently selected text between LTR and RTL format. Supported via two buttons in the toolbar in ParagraphButtons.
  4. Summernote At Mention – Shows a dropdown of available mentions when the ‘@’ character is typed into the editor. The implementation requires that you pass a list of available mentions, and you can also provide a function to call when a mention is inserted into the editor.
  5. Summernote File – Support picture files (jpg, png, gif, wvg, webp), audio files (mp3, ogg, oga), and video files (mp4, ogv, webm) in base64. Supported via the image/audio/video/other file buttons in the toolbar in InsertButtons.

This list is not final, more can be added. If there’s a specific plugin you’d like to see support for, please file a feature request!

No plugins are activated activated by default. They can be activated by modifying the toolbar items, see above for details.

To activate Summernote At Mention:

HtmlEditorController controller = HtmlEditorController();
Widget htmlEditor = HtmlEditor(
  controller: controller, //required
  //other options
  plugins: [
    SummernoteAtMention(
      //returns the dropdown items on mobile
      getSuggestionsMobile: (String value) {
        List<String> mentions = ['test1', 'test2', 'test3'];
        return mentions
            .where((element) => element.contains(value))
            .toList();
      },
      //returns the dropdown items on web
      mentionsWeb: ['test1', 'test2', 'test3'],
      onSelect: (String value) {
        print(value);
      }
    ),
  ]
);

HtmlEditorOptions parameters

This section contains longer descriptions for select parameters in HtmlEditorOptions. For parameters not mentioned here, see the parameters table above for a short description. If you have further questions, please file an issue.

autoAdjustHeight

Default value: true

This option parameter sets the height of the editor automatically by getting the value returned by the JS document.body.scrollHeight and the toolbar GlobalKey (toolbarKey.currentContext?.size?.height).

This is useful because the toolbar could have either 1 – 5 rows depending on the widget’s configuration, screen size, orientation, etc. There is no reliable way to tell how large the toolbar is going to be until after build() is executed, and thus simply hardcoding the height of the webview can induce either empty space at the bottom or a scrollable webview. By using the JS and a GlobalKey on the toolbar widget, the editor can get the exact height and update the widget to reflect that.

There is a drawback: The webview will visibly shift size after the page is loaded. Depending on how large the change is, it could be jarring. Sometimes, it takes a second for the webview to adjust to the new size and you might see the editor page jump down/up a second or two after the webview container adjusts itself.

If this does not help your use case feel free to disable it, but the recommended value is true.

adjustHeightForKeyboard

Default value: true, only considered on mobile

This option parameter changes the height of the editor if the keyboard is active and it overlaps with the editor.

This is useful because webviews do not shift their view when the keyboard is active on Flutter at the moment. This means that if your editor spans the height of the page, if the user types a long text they might not be able to see what they are typing because it is obscured by the keyboard.

When this parameter is enabled, the webview will shift to the perfect height to ensure all the typed content is visible, and as soon as the keyboard is hidden, the editor shifts back to its original height.

The webview does take a moment to shift itself back and forth after the keyboard pops up/keyboard disappears, but the delay isn’t too bad. It is highly recommended to have the webview in a Scrollable and shouldEnsureVisible enabled if there are other widgets on the page – if the editor is on the bottom half of the page it will be scrolled to the top and then the height will be set accordingly, rather than the plugin trying to set the height for a webview obscured completely by the keyboard.

See below for an example use case.

If this does not help your use case feel free to disable it, but the recommended value is true.

filePath

This option parameter allows you to fully customize what HTML is loaded into the webview, by providing a file path to a custom HTML file from assets.

There is a particular format that is required/recommended when providing a file path for web, because the web implementation will load the HTML as a String and make changes to it directly using replaceAll()., rather than using a method like evaluateJavascript() – because that does not exist on Web.

On Web, you should include the following:

  1. <!--darkCSS--> inside <head> – this enables dark mode support
  2. <!--headString--> inside <body> and below your summernote <div> – this allows the JS and CSS files for any enabled plugins to be loaded
  3. <!--summernoteScripts--> inside <body> and below your summernote <div> – REQUIRED – this allows Dart and JS to communicate with each other. If you don’t include this, then methods/callbacks will do nothing.

Notes:

  1. Do not initialize the Summernote editor in your custom HTML file! The package will take care of that.
  2. Make sure to set the id for Summernote to summernote-2! – <div id="summernote-2"></div>.
  3. Make sure to include jquery and the Summernote JS/CSS in your file! The package does not do this for you.

    You can use these files from the package to avoid adding more asset files:
<script src="assets/packages/html_editor_enhanced/assets/jquery.min.js"></script>
<link href="assets/packages/html_editor_enhanced/assets/summernote-lite.min.css" rel="stylesheet">
<script src="assets/packages/html_editor_enhanced/assets/summernote-lite.min.js"></script>

See the example HTML file below for an actual example.

shouldEnsureVisible

Default value: false

This option parameter will scroll the editor container into view whenever the webview is focused or text is typed into the editor.

You can only use this parameter if your HtmlEditor is inside a Scrollview, otherwise it does nothing.

This is useful in cases where the page is a SingleChildScrollView or something similar with multiple widgets (eg a form). When the user is going through the different fields, it will pop the webview into view, just like a TextField would scroll into in view if text is being typed inside it.

See below for an example with a good way to use this.

webInitialScripts

This parameter allows you to specify custom JavaScript for the editor on Web. These can be called at any point in time using controller.evaluateJavascriptWeb.

You must add these scripts using the WebScript class, which takes a name and a script argument. name must be a unique identifier, otherwise your desired script may not be executed. Pass your JavaScript code in the script argument.

The package supports returning values from JavaScript as well. You should run var result = await controller.evaluateJavascriptWeb(<name>, hasReturnValue: true);.

To get the return value, you must add the following at the end of your JavaScript:

window.parent.postMessage(JSON.stringify({"type": "toDart: <WebScript name goes here>", <add any other params you wish to return here>}), "*");

You can view a complete example below

HtmlToolbarOptions parameters

This section contains longer descriptions for select parameters in HtmlToolbarOptions. For parameters not mentioned here, see the parameters table above for a short description. If you have further questions, please file an issue.

customToolbarButtons and customToolbarButtonsInsertionIndices

These two parameters allow you to insert custom buttons and set where they are inserted into the toolbar widget list.

This would look something like this:

HtmlEditorController controller = HtmlEditorController();
Widget htmlEditor = HtmlEditor(
  controller: controller, //required
  //other options
  toolbarOptions: HtmlToolbarOptions(
    defaultToolbarButtons: [
      StyleButtons(),
      FontSettingButtons(),
      FontButtons(),
      ColorButtons(),
      ListButtons(),
      ParagraphButtons(),
      InsertButtons(),
      OtherButtons(),
    ],
    customToolbarButtons: [
      //your widgets here
      Button1(),
      Button2(),
    ],
    customToolbarInsertionIndices: [2, 5]
  )
);

In the above example, we have defined two buttons to be inserted at indices 2 and 5. These buttons will not be inserted before FontSettingButtons and before ListButtons, respectively! Each default button group may have a few different sub-groups:

Button GroupNumber of Subgroups
StyleButtons1
FontSettingButtons3
FontButtons2
ColorButtons1
ListButtons2
ParagraphButtons5
InsertButtons1
OtherButtons2

If some of your buttons are deactivated, the number of subgroups could be reduced. The insertion index depends on these subgroups rather than the overall button group. An easy way to count the insertion index is to build the app and count the number of separator spaces between each button group/dropdown before the location you want to insert your button.

So with this in mind, Button1 will be inserted between the first two subgroups in FontSettingButtons, and Button2 will be inserted between the two subgroups in FontButtons.

When creating an onPressed/onTap/onChanged method for your widget, you can use controller.execCommand or any of the other methods on the controller to perform actions in the editor.

Notes:

  1. using controller.editorController.<method> will do nothing on Web!
  2. If you don’t provide customToolbarButtonsInsertionIndices, the plugin will insert your buttons at the end of the default toolbar list
  3. If you provide customToolbarButtonsInsertionIndices, it must be the same length as your customToolbarButtons widget list.

linkInsertInterceptormediaLinkInsertInterceptorotherFileLinkInsertmediaUploadInterceptor, and onOtherFileUpload

These callbacks help you intercept any links or files being inserted into the editor.

ParameterTypeDescription
linkInsertInterceptorFutureOr<bool> Function(String, String, bool)Intercept any links inserted into the editor. The function passes the display text (String), the URL (String), and whether it opens a new tab (bool).
mediaLinkInsertInterceptorFutureOr<bool> Function(String, InsertFileType)Intercept any media links inserted into the editor. The function passes the URL (String).
mediaUploadInterceptorFutureOr<bool> Function(PlatformFile, InsertFileType)Intercept any media files inserted into the editor. The function passes PlatformFile which holds all relevant file data. You can use this to upload into your server, to extract base64 data, perform file validation, etc. It also passes the file type (image/audio/video).
onOtherFileLinkInsertFunction(String)Intercept file link inserts other than image/audio/video. This handler is required when using the other file button, as the package has no built-in handlers. The function passes the URL (String). It also passes the file type (image/audio/video)
onOtherFileUploadFunction(PlatformFile)Intercept file uploads other than image/audio/video. This handler is required when using the other file button, as the package has no built-in handlers. The function passes PlatformFile which holds all relevant file data. You can use this to upload into your server, to extract base64 data, perform file validation, etc.

For linkInsertInterceptormediaLinkInsertInterceptor, and mediaUploadInterceptor, you must return a bool to tell the plugin what it should do. When you return false, it assumes that you have handled the user request and taken action. When you return true, the plugin will use the default handlers to handle the user request.

onOtherFileLinkInsert and onOtherFileUpload are required when using the “other file” button. This button isn’t active by default, so if you make it active, you must provide these functions, otherwise nothing will happen when the user inserts a file other than image/audio/video.

See below for an example.

onButtonPressed and onDropdownChanged

These callbacks help you intercept any button presses or dropdown changes.

ParameterTypeDescription
onButtonPressedFutureOr<bool> Function(ButtonType, bool?, void Function()?)Intercept any button presses. The function passes the enum for the pressed button, the current selected status of the button (if applicable) and a function to update the status (if applicable).
onDropdownChangedFutureOr<bool> Function(DropdownType, dynamic, void Function(dynamic)?)Intercept any dropdown changes. The function passes the enum for the changed dropdown, the changed value, and a function to update the changed value (if applicable).

You must return a bool to tell the plugin what it should do. When you return false, it assumes that you have handled the user request and taken action. When you return true, the plugin will use the default handlers to handle the user request.

Some buttons and dropdowns, such as copy/paste and the case converter, don’t need to update their changed value, so functions to update the value after handling the user request will not be provided for those buttons.

See below for an example.

Custom toolbar position using ToolbarPosition.custom

You can use toolbarPosition: ToolbarPosition.custom and the ToolbarWidget() widget to fully customize exactly where you want to place the toolbar. THe possibilities are endless – you could place the toolbar in a sticky header using Slivers, you could decide to show/hide the toolbar whenever you please, or you could make the toolbar into a floating, draggable widget!

ToolbarWidget() requires the HtmlEditorController you created for the editor itself, along with the HtmlToolbarOptions you supplied to the Html constructor. These can be simply copy-pasted, no changed necessary.

A basic example where the toolbar is placed in a different location than normal:

HtmlEditorController controller = HtmlEditorController();
Widget column = Column(
  mainAxisAlignment: MainAxisAlignment.center,
  children: <Widget>[
    HtmlEditor(
      controller: controller,
      htmlEditorOptions: HtmlEditorOptions(
        hint: 'Your text here...',
        shouldEnsureVisible: true,
        //initialText: "<p>text content initial, if any</p>",
      ),
      htmlToolbarOptions: HtmlToolbarOptions(
        toolbarPosition: ToolbarPosition.custom, //required to place toolbar anywhere!
        //other options
      ),
      otherOptions: OtherOptions(height: 550),
    ),
    //other widgets here
    Widget1(),
    Widget2(),
    ToolbarWidget(
      controller: controller,
      htmlToolbarOptions: HtmlToolbarOptions(
        toolbarPosition: ToolbarPosition.custom, //required to place toolbar anywhere!
        //other options
      ),
    )
  ]
);

HtmlEditorController Parameters

processInputHtmlprocessOutputHtml, and processNewLineAsBr

Default values: true, true, false, respectively

processInputHtml replaces any occurrences of " with \\"' with \\', and \r\r\n\n, and \n\n with empty strings. This is necessary to prevent syntax exceptions when inserting HTML into the editor as quotes and other special characters will not be escaped. If you have already sanitized and escaped all relevant characters from your HTML input, it is recommended to set this parameter false. You may also want to set this parameter false on Web, as in testing it seems these characters are handled correctly by default, but that may not be the case for your HTML.

processOutputHtml replaces the output HTML with "" if:

  1. It is empty
  2. It is <p></p>
  3. It is <p><br></p>
  4. It is <p><br/></p>

These may seem a little random, but they are the three possible default/initial HTML codes the Summernote editor will have. If you’d like to still receive these outputs, set the parameter false.

processNewLineAsBr will replace \n and \n\n with <br/>. This is only recommended when inserting plaintext as the initial value. In typical HTML any new-lines are ignored, and therefore this parameter defaults to false.

Examples

See the example app to see how the majority of methods & callbacks can be used. You can also play around with the parameters to see how they function.

This section will be updated later with more specialized and specific examples as this library grows and more features are implemented.

Example for linkInsertInterceptormediaLinkInsertInterceptorotherFileLinkInsertmediaUploadInterceptor, and onOtherFileUpload:

Example code

Example for onButtonPressed and onDropdownChanged

Example code

Example for adjustHeightForKeyboard:

Example code

Example for shouldEnsureVisible:

Example code

Example HTML for filePath:

Example HTML

Example for webInitialScripts:

View code

Notes

Due to this package depending on a webview for rendering the HTML editor, there will be some general weirdness in how the editor behaves. Unfortunately, these are not things I can fix, they are inherent problems with how webviews function on Flutter.

If you do find any issues, please report them in the Issues tab and I will see if a fix is possible, but if I close the issue it is likely due to the above fact.

  1. When switching between dark and light mode, a reload is required for the HTML editor to switch to the correct color scheme. You can implement this programmatically in Flutter Mobile: <controller name>.editorController.reload(), or in Flutter Web: <controller name>.reloadWeb(). This will reset the editor! You can save the current text, reload, and then set the text if you’d like to maintain the state.
  2. If you are making a cross platform implementation and are using either the editorController getter or the reloadWeb() method, use kIsWeb in your app to ensure you are calling these in the correct platform.

FAQ

Download Flutter WYSIWYG editor source code on GitHub

https://github.com/tneotia/html-editor-enhanced

Check out the implementation guide on pub.dev

https://pub.dev/packages/html_editor_enhanced