Fix text selection in read-only mode

pull/135/head
Xin Yao 4 years ago
parent 53eaf34ad9
commit 8ab586c318
  1. 3
      CHANGELOG.md
  2. 7
      lib/widgets/raw_editor.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
## [1.1.7]
* Fix text selection in read-only mode.
## [1.1.6]
* Remove universal_html dependency.

@ -898,6 +898,12 @@ class RawEditorState extends EditorState
_onChangeTextEditingValue();
} else {
requestKeyboard();
if (mounted) {
setState(() {
// Use widget.controller.value in build()
// Trigger build and updateChildren
});
}
}
}
@ -1109,6 +1115,7 @@ class RawEditorState extends EditorState
return false;
}
_selectionOverlay!.update(textEditingValue);
_selectionOverlay!.showToolbar();
return true;
}

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

Loading…
Cancel
Save