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

优化调用setState

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