File tree Expand file tree Collapse file tree 6 files changed +11
-8
lines changed Expand file tree Collapse file tree 6 files changed +11
-8
lines changed Original file line number Diff line number Diff line change
1
+ # [ 6.1.9]
2
+ * Bump keyboard show up wait to 1 sec.
3
+
1
4
# [ 6.1.8]
2
5
* Recalculate focus when showing keyboard.
3
6
Original file line number Diff line number Diff line change 21
21
<key >CFBundleVersion </key >
22
22
<string >1.0 </string >
23
23
<key >MinimumOSVersion </key >
24
- <string >9 .0 </string >
24
+ <string >11 .0 </string >
25
25
</dict >
26
26
</plist >
Original file line number Diff line number Diff line change 1
1
# Uncomment this line to define a global platform for your project
2
- # platform :ios, '9 .0'
2
+ # platform :ios, '11 .0'
3
3
4
4
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
5
5
ENV [ 'COCOAPODS_DISABLE_STATS' ] = 'true'
Original file line number Diff line number Diff line change 351
351
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
352
352
GCC_WARN_UNUSED_FUNCTION = YES;
353
353
GCC_WARN_UNUSED_VARIABLE = YES;
354
- IPHONEOS_DEPLOYMENT_TARGET = 9 .0;
354
+ IPHONEOS_DEPLOYMENT_TARGET = 11 .0;
355
355
MTL_ENABLE_DEBUG_INFO = NO;
356
356
SDKROOT = iphoneos;
357
357
SUPPORTED_PLATFORMS = iphoneos;
433
433
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
434
434
GCC_WARN_UNUSED_FUNCTION = YES;
435
435
GCC_WARN_UNUSED_VARIABLE = YES;
436
- IPHONEOS_DEPLOYMENT_TARGET = 9 .0;
436
+ IPHONEOS_DEPLOYMENT_TARGET = 11 .0;
437
437
MTL_ENABLE_DEBUG_INFO = YES;
438
438
ONLY_ACTIVE_ARCH = YES;
439
439
SDKROOT = iphoneos;
482
482
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
483
483
GCC_WARN_UNUSED_FUNCTION = YES;
484
484
GCC_WARN_UNUSED_VARIABLE = YES;
485
- IPHONEOS_DEPLOYMENT_TARGET = 9 .0;
485
+ IPHONEOS_DEPLOYMENT_TARGET = 11 .0;
486
486
MTL_ENABLE_DEBUG_INFO = NO;
487
487
SDKROOT = iphoneos;
488
488
SUPPORTED_PLATFORMS = iphoneos;
Original file line number Diff line number Diff line change @@ -1078,8 +1078,8 @@ class RawEditorState extends EditorState
1078
1078
if (keyboardAlreadyShown) {
1079
1079
_showCaretOnScreen ();
1080
1080
} 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);
1083
1083
}
1084
1084
} else {
1085
1085
widget.focusNode.requestFocus ();
Original file line number Diff line number Diff line change 1
1
name : flutter_quill
2
2
description : A rich text editor supporting mobile and web (Demo App @ bulletjournal.us)
3
- version : 6.1.8
3
+ version : 6.1.9
4
4
# author: bulletjournal
5
5
homepage : https://bulletjournal.us/home/index.html
6
6
repository : https://github.com/singerdmx/flutter-quill
You can’t perform that action at this time.
0 commit comments