Upgrade to 4.1.3

pull/783/head
X Code 3 years ago
parent 2b3fa606ae
commit c0c6b8607d
  1. 3
      CHANGELOG.md
  2. 4
      lib/src/widgets/raw_editor.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
# [4.1.3]
* Fix selection handles show/hide after paste, backspace, copy.
# [4.1.2]
* Add full support for hardware keyboards (Chromebook, Android tablets, etc) that don't alter screen UI.

@ -1010,8 +1010,8 @@ class RawEditorState extends EditorState
userUpdateTextEditingValue(
TextEditingValue(
text: textEditingValue.text,
selection: TextSelection.collapsed(
offset: textEditingValue.selection.end),
selection:
TextSelection.collapsed(offset: textEditingValue.selection.end),
),
cause,
);

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

Loading…
Cancel
Save