提交 9382a98d authored 作者: Kevin's avatar Kevin

优化调用setState

上级 fad51ad6
## [0.4.0]
## [0.4.1]
* TODO: 修复了键盘高度从小变大的时候无法改变的问题, issues: 36
* TODO: 键盘添加了传参功能,可从外部传参到键盘内部
......
......@@ -9,7 +9,7 @@ Usage Add this to your package's pubspec.yaml file:
Flutter >=1.7
``` yaml
dependencies:
cool_ui: "^0.4.0"
cool_ui: "^0.4.1"
```
Flutter < 1.7
......
......@@ -364,10 +364,10 @@ class KeyboardPageState extends State<KeyboardPage> {
void initState() {
// TODO: implement initState
super.initState();
Future.delayed(Duration(milliseconds: 1)).then((_) {
setState(() {
WidgetsBinding.instance.addPostFrameCallback((_){
_height = widget.height;
});
setState(()=>{});
});
}
......@@ -413,15 +413,15 @@ class KeyboardPageState extends State<KeyboardPage> {
}
update() {
try {
setState(() => {});
} catch (_) {}
WidgetsBinding.instance.addPostFrameCallback((_){
setState(()=>{});
});
}
updateHeight(double height) {
try {
WidgetsBinding.instance.addPostFrameCallback((_){
this._height = height ?? 0;
setState(() => {});
} catch (_) {}
setState(()=>{});
});
}
}
......@@ -43,14 +43,10 @@ class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{
}
onUpdateHeight(){
try{
WidgetsBinding.instance.addPostFrameCallback((_){
setState(()=>{});
}catch(_){
Future.delayed(Duration(milliseconds: 16), (){
this.onUpdateHeight();
});
}
}
@override
void dispose(){
......
name: cool_ui
description: Some practical Widget for flutter,Popover,Weui,Custom Keyboard
version: 0.4.0
version: 0.4.1
author: Kevin <liangkaikevin@gmail.com>
homepage: https://github.com/Im-Kevin/cool_ui
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论