Fix cursor after pasting

pull/17/head
singerdmx 4 years ago
parent 1f33d621f4
commit a58e0d523b
  1. 5
      CHANGELOG.md
  2. 5
      lib/widgets/raw_editor.dart
  3. 2
      pubspec.yaml

@ -69,4 +69,7 @@
* Support the use of custom icon size in toolbar.
## [0.2.5]
* Toggle text/background color button in toolbar.
* Toggle text/background color button in toolbar.
## [0.2.6]
* Fix cursor after pasting.

@ -1028,6 +1028,11 @@ class RawEditorState extends EditorState
data.text,
value.selection,
);
// move cursor to the end of pasted text selection
widget.controller.updateSelection(
TextSelection.collapsed(
offset: value.selection.start + data.text.length),
ChangeSource.LOCAL);
}
}
}

@ -1,6 +1,6 @@
name: flutter_quill
description: One client and affiliated collaborator of Flutter Quill is Bullet Journal App.
version: 0.2.5
version: 0.2.6
#author: bulletjournal
homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill.git

Loading…
Cancel
Save