Delay focus calculation for iOS

pull/1036/head
X Code 2 years ago
parent 6e74971ae1
commit 1597cb9181
  1. 3
      CHANGELOG.md
  2. 9
      lib/src/widgets/raw_editor.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
# [6.1.10]
* Delay focus calculation for iOS.
# [6.1.9]
* Bump keyboard show up wait to 1 sec.

@ -1075,11 +1075,12 @@ class RawEditorState extends EditorState
if (_hasFocus) {
final keyboardAlreadyShown = _keyboardVisible;
openConnectionIfNeeded();
if (keyboardAlreadyShown) {
_showCaretOnScreen();
if (!keyboardAlreadyShown ||
defaultTargetPlatform == TargetPlatform.iOS) {
/// delay 500 milliseconds for waiting keyboard show up
Future.delayed(const Duration(milliseconds: 500), _showCaretOnScreen);
} else {
/// delay 1000 milliseconds for waiting keyboard show up
Future.delayed(const Duration(milliseconds: 1000), _showCaretOnScreen);
_showCaretOnScreen();
}
} else {
widget.focusNode.requestFocus();

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

Loading…
Cancel
Save