mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
chore: update version and documentation
This commit is contained in:
parent
17536fdecb
commit
8a53abef3f
@ -1,5 +1,6 @@
|
|||||||
## 0.0.7
|
## 0.0.7
|
||||||
* Refactor theme customizer, and support dark mode.
|
* Refactor theme customizer, and support dark mode.
|
||||||
|
* Support export and import markdown.
|
||||||
* Fix some bugs.
|
* Fix some bugs.
|
||||||
|
|
||||||
## 0.0.6
|
## 0.0.6
|
||||||
|
@ -54,11 +54,9 @@ flutter pub get
|
|||||||
Start by creating a new empty AppFlowyEditor object.
|
Start by creating a new empty AppFlowyEditor object.
|
||||||
|
|
||||||
```dart
|
```dart
|
||||||
final editorStyle = EditorStyle.defaultStyle();
|
|
||||||
final editorState = EditorState.empty(); // an empty state
|
final editorState = EditorState.empty(); // an empty state
|
||||||
final editor = AppFlowyEditor(
|
final editor = AppFlowyEditor(
|
||||||
editorState: editorState,
|
editorState: editorState,
|
||||||
editorStyle: editorStyle,
|
|
||||||
);
|
);
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -66,11 +64,9 @@ You can also create an editor from a JSON object in order to configure your init
|
|||||||
|
|
||||||
```dart
|
```dart
|
||||||
final json = ...;
|
final json = ...;
|
||||||
final editorStyle = EditorStyle.defaultStyle();
|
|
||||||
final editorState = EditorState(Document.fromJson(data));
|
final editorState = EditorState(Document.fromJson(data));
|
||||||
final editor = AppFlowyEditor(
|
final editor = AppFlowyEditor(
|
||||||
editorState: editorState,
|
editorState: editorState,
|
||||||
editorStyle: editorStyle,
|
|
||||||
);
|
);
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -293,7 +293,6 @@ final editorState = EditorState(
|
|||||||
);
|
);
|
||||||
return AppFlowyEditor(
|
return AppFlowyEditor(
|
||||||
editorState: editorState,
|
editorState: editorState,
|
||||||
editorStyle: EditorStyle.defaultStyle(),
|
|
||||||
shortcutEvents: const [],
|
shortcutEvents: const [],
|
||||||
customBuilders: {
|
customBuilders: {
|
||||||
'network_image': NetworkImageNodeWidgetBuilder(),
|
'network_image': NetworkImageNodeWidgetBuilder(),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user