You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-9Lines changed: 6 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ You can join our [Slack Group] for discussion.
36
36
Pub: [FlutterQuill] <br>
37
37
If you are viewing this page from pub.dev page, then you
38
38
might have some issues with opening some links, please open
39
-
it in GitHub repo instead.
39
+
it's in the GitHub repo instead.
40
40
41
41
## Table of contents
42
42
-[Flutter Quill](#flutter-quill)
@@ -93,8 +93,6 @@ dependencies:
93
93
> Using the latest version and reporting any issues you encounter on GitHub will greatly contribute to the improvement of the library.
94
94
> Your input and insights are valuable in shaping a stable and reliable version for all our users. Thank you for being part of the open-source community!
95
95
>
96
-
> If the latest version of [FlutterQuill Extensions] is pre-release, then please use it to work with the latest stable version of [FlutterQuill]
97
-
>
98
96
99
97
Compatible versions:
100
98
@@ -140,7 +138,7 @@ QuillProvider(
140
138
)
141
139
```
142
140
143
-
And depending on your use case, you might want to dispose the `_controller` in dispose method
141
+
Depending on your use case, you might want to dispose of the `_controller` in `dispose` method
144
142
145
143
in most cases, it's better to.
146
144
@@ -159,13 +157,13 @@ It consists of a series of operations, each representing an insertion, deletion,
159
157
or formatting change within the document.
160
158
161
159
Don’t be confused by its name Delta—Deltas represents both documents and changes to documents.
162
-
If you think of Deltas as the instructions from going from one document to another,
160
+
If you think of Deltas as the instructions for going from one document to another,
163
161
the way Deltas represent a document is by expressing the instructions starting from an empty document.
164
162
165
163
* Use `_controller.document.toDelta()` to extract the deltas.
166
164
* Use `_controller.document.toPlainText()` to extract plain text.
167
165
168
-
FlutterQuill provides some JSON serialization support, so that you can save and open documents.
166
+
FlutterQuill provides some JSON serialization support so that you can save and open documents.
169
167
To save a document as JSON, do something like the following:
170
168
171
169
```dart
@@ -256,7 +254,7 @@ Please use [flutter_quill_test](https://pub.dev/packages/flutter_quill_test) for
256
254
257
255
## Contributors
258
256
259
-
Special thanks for everyone that has contributed to this project...
257
+
Special thanks to everyone who has contributed to this project...
0 commit comments