Skip to content

Commit fb26c84

Browse files
committed
Bump keyboard show up wait to 1 sec
1 parent 65c38a8 commit fb26c84

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# [6.1.9]
2+
* Bump keyboard show up wait to 1 sec.
3+
14
# [6.1.8]
25
* Recalculate focus when showing keyboard.
36

example/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>9.0</string>
24+
<string>11.0</string>
2525
</dict>
2626
</plist>

example/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
# platform :ios, '9.0'
2+
# platform :ios, '11.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@
351351
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
352352
GCC_WARN_UNUSED_FUNCTION = YES;
353353
GCC_WARN_UNUSED_VARIABLE = YES;
354-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
354+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
355355
MTL_ENABLE_DEBUG_INFO = NO;
356356
SDKROOT = iphoneos;
357357
SUPPORTED_PLATFORMS = iphoneos;
@@ -433,7 +433,7 @@
433433
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
434434
GCC_WARN_UNUSED_FUNCTION = YES;
435435
GCC_WARN_UNUSED_VARIABLE = YES;
436-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
436+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
437437
MTL_ENABLE_DEBUG_INFO = YES;
438438
ONLY_ACTIVE_ARCH = YES;
439439
SDKROOT = iphoneos;
@@ -482,7 +482,7 @@
482482
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
483483
GCC_WARN_UNUSED_FUNCTION = YES;
484484
GCC_WARN_UNUSED_VARIABLE = YES;
485-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
485+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
486486
MTL_ENABLE_DEBUG_INFO = NO;
487487
SDKROOT = iphoneos;
488488
SUPPORTED_PLATFORMS = iphoneos;

lib/src/widgets/raw_editor.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1078,8 +1078,8 @@ class RawEditorState extends EditorState
10781078
if (keyboardAlreadyShown) {
10791079
_showCaretOnScreen();
10801080
} else {
1081-
/// delay 500 milliseconds for waiting keyboard show up
1082-
Future.delayed(const Duration(milliseconds: 500), _showCaretOnScreen);
1081+
/// delay 1000 milliseconds for waiting keyboard show up
1082+
Future.delayed(const Duration(milliseconds: 1000), _showCaretOnScreen);
10831083
}
10841084
} else {
10851085
widget.focusNode.requestFocus();

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_quill
22
description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us)
3-
version: 6.1.8
3+
version: 6.1.9
44
#author: bulletjournal
55
homepage: https://bulletjournal.us/home/index.html
66
repository: https://github.com/singerdmx/flutter-quill

0 commit comments

Comments
 (0)