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

升级版本0.3.1

上级 5766382a
## [0.3.1]
* TODO: 修复了键盘监听高度未释放的问题
## [0.3.0]
* TODO: 优化了键盘的使用方式
......
......@@ -353,6 +353,7 @@ class KeyboardPageState extends State<KeyboardPage>
@override
Widget build(BuildContext context) {
return Positioned(
child: IntrinsicHeight(child: Builder(
builder: (ctx) {
......@@ -360,7 +361,10 @@ class KeyboardPageState extends State<KeyboardPage>
if (result != null) {
_lastBuildWidget = result;
}
return _lastBuildWidget;
return ConstrainedBox(
constraints: BoxConstraints(minHeight: 0,minWidth: 0,maxHeight: widget.height, maxWidth: _ScreenUtil.getScreenW(context)),
child: _lastBuildWidget,
);
},
)),
bottom: (widget.height - doubleAnimation.value) * -1);
......@@ -381,6 +385,8 @@ class KeyboardPageState extends State<KeyboardPage>
}
update() {
this.setState(() {});
try{
setState(()=>{});
}catch(_){}
}
}
......@@ -36,6 +36,14 @@ class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{
}
onUpdateHeight(){
setState(()=>{});
try{
setState(()=>{});
}catch(_){}
}
@override
void dispose(){
super.dispose();
CoolKeyboard._keyboardHeightNotifier.removeListener(onUpdateHeight);
}
}
\ No newline at end of file
......@@ -5,35 +5,35 @@ packages:
dependency: transitive
description:
name: async
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "2.3.0"
back_button_interceptor:
dependency: "direct main"
description:
name: back_button_interceptor
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "4.0.6"
version: "4.2.2"
boolean_selector:
dependency: transitive
description:
name: boolean_selector
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "1.0.5"
charcode:
dependency: transitive
description:
name: charcode
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "1.1.2"
collection:
dependency: transitive
description:
name: collection
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "1.14.11"
flutter:
......@@ -50,35 +50,35 @@ packages:
dependency: transitive
description:
name: matcher
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "0.12.5"
meta:
dependency: transitive
description:
name: meta
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "1.1.7"
path:
dependency: transitive
description:
name: path
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "1.6.4"
pedantic:
dependency: transitive
description:
name: pedantic
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "1.8.0+1"
quiver:
dependency: transitive
description:
name: quiver
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "2.0.5"
sky_engine:
......@@ -90,56 +90,56 @@ packages:
dependency: transitive
description:
name: source_span
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "1.5.5"
stack_trace:
dependency: transitive
description:
name: stack_trace
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "1.9.3"
stream_channel:
dependency: transitive
description:
name: stream_channel
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "2.0.0"
string_scanner:
dependency: transitive
description:
name: string_scanner
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "1.0.5"
term_glyph:
dependency: transitive
description:
name: term_glyph
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "1.1.0"
test_api:
dependency: transitive
description:
name: test_api
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "0.2.5"
typed_data:
dependency: transitive
description:
name: typed_data
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "1.1.6"
vector_math:
dependency: transitive
description:
name: vector_math
url: "https://pub.flutter-io.cn"
url: "https://pub.dev"
source: hosted
version: "2.0.8"
sdks:
......
name: cool_ui
description: Some practical Widget for flutter,Popover,Weui,Custom Keyboard
version: 0.3.0
version: 0.3.1
author: Kevin <liangkaikevin@gmail.com>
homepage: https://github.com/Im-Kevin/cool_ui
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论