Upgrade to 2.0.10

pull/429/head
Cheryl 3 years ago
parent aea3159ddc
commit c7158b5507
  1. 3
      CHANGELOG.md
  2. 4
      lib/src/widgets/text_line.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
## [2.0.10]
* cursorConnt.color notify the text_line to repaint if it was disposed.
## [2.0.9]
* Improve UX when trying to add a link.

@ -886,10 +886,10 @@ class RenderEditableTextLine extends RenderEditableBox {
void safeMarkNeedsPaint() {
if (!attached) {
//Should not paint if it was unattach.
//Should not paint if it was unattached.
return;
}
safeMarkNeedsPaint();
markNeedsPaint();
}
}

@ -1,6 +1,6 @@
name: flutter_quill
description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us)
version: 2.0.9
version: 2.0.10
#author: bulletjournal
homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill

Loading…
Cancel
Save