-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4940e36
commit f575c79
Showing
4 changed files
with
67 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,24 @@ | ||
## [0.0.2] - 2021-02-27 | ||
|
||
* Improve documentation. | ||
* Retrieve the full HTML document's text with `await editorApi.getFullHtml()` | ||
* Add any custom CSS styles with `editorApi.customStyles` setter, for example | ||
```dart | ||
editorApi.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.styles` setter. | ||
* Use the minimum height specified in `HtmlEditor.minHeight`. | ||
|
||
## [0.0.1] - 2021-02-27 | ||
|
||
* Basic HTML editor with Flutter-native control widgets. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters