提交 b3d73b80 authored 作者: Kevin's avatar Kevin

修复键盘有时候不会收起来的问题

上级 77b0f804
## [0.5.2]
* TODO: 修复键盘有时候不会收起来的问题
## [0.5.0]
* TODO: 修复Flutter1.17版本后无法在打开第二个自定义键盘不显示的问题
......
......@@ -9,7 +9,7 @@ Usage Add this to your package's pubspec.yaml file:
Flutter >=1.17
``` yaml
dependencies:
cool_ui: "^0.5.1"
cool_ui: "^0.5.2"
```
Flutter >=1.7
......
......@@ -78,20 +78,31 @@ class CustomKeyboardDemoState extends State<CustomKeyboardDemo> {
child: Container(
padding: EdgeInsets.only(top: 10),
child: Material(
child: TextField(
child: Column(children: <Widget>[
TextField(
inputFormatters: inputFormatters,
keyboardType: keyboardType,
autofocus: true,
onChanged: (newValue) {
value = newValue;
},
)))));
return AnimatedPadding(
padding: MediaQuery.of(context).viewInsets +
const EdgeInsets.symmetric(horizontal: 40.0, vertical: 24.0),
duration: const Duration(milliseconds: 300),
// curve: Curves.linear,
child: CupertinoAlertDialog(
),
TextField(
inputFormatters: inputFormatters,
keyboardType: TextInputType.text,
onChanged: (newValue) {
value = newValue;
},
),
TextField(
inputFormatters: inputFormatters,
keyboardType: keyboardType,
onChanged: (newValue) {
value = newValue;
},
)
],)))));
return CupertinoAlertDialog(
title: titleWidget,
content: Column(
children: children,
......@@ -108,7 +119,7 @@ class CustomKeyboardDemoState extends State<CustomKeyboardDemo> {
},
)
],
));
);
});
}
}
......@@ -173,7 +173,7 @@ class CoolKeyboard {
// });
if (animation) {
_keyboardEntry = null;
final keyboardEntry = _keyboardEntry;
var keyboardEntry = _keyboardEntry;
_pageKey.currentState.exitKeyboard();
Future.delayed(Duration(milliseconds: 116)).then((_) {
if (keyboardEntry != null) {
......
name: cool_ui
description: Some practical Widget for flutter,Popover,Weui,Custom Keyboard
version: 0.5.1
version: 0.5.2
author: Kevin <liangkaikevin@gmail.com>
homepage: https://github.com/Im-Kevin/cool_ui
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论