Releases: Enough-Software/enough_html_editor
Releases · Enough-Software/enough_html_editor
v0.0.6
v0.0.5
- New feature: edit / add links
- New feature: color document foreground and background
- New feature: replace text (parts) using the
HtmlEditorApi. - Use cupertino look and feel on iOS
- Improve code style and documentation
- Ensure compatibility with Flutter 3.0
v0.0.4
- Support dark theme
- Simpler usage with
PackagedHtmlEditor#2 - Select text foreground and background colors #12, $14
- New strike through option
- Bold, italic, underline text is now detected from inline CSS styles, too #5
- Optionally specify your own context menu items using the
textSelectionMenuItemsparameter - Optionally specify your own widgets for the predefined
HtmlEditorControlswidget using theprefixand/orsuffixparameters
v0.0.3
v0.0.2
- Improve documentation.
- Retrieve the full HTML document's text with
await editorApi.getFullHtml() - Add any custom CSS styles with
editorApi.customStylessetter, for exampleeditorApi.customStyles = ''' blockquote { font: normal helvetica, sans-serif; margin-top: 10px; margin-bottom: 10px; margin-left: 20px; padding-left: 15px; border-left: 3px solid #ccc; } ''';
- Replace all CSS styles with the
editorApi.stylessetter. - Use the minimum height specified in
HtmlEditor.minHeight.