提交 73c47aa1 authored 作者: Kevin's avatar Kevin

修复页面高度未刷新问题

上级 e62fb57e
## [0.3.2]
* TODO: 修复页面高度未刷新问题
## [0.3.1]
* TODO: 修复了键盘监听高度未释放的问题
......
......@@ -9,7 +9,7 @@ Usage Add this to your package's pubspec.yaml file:
Flutter >=1.7
``` yaml
dependencies:
cool_ui: "^0.3.0"
cool_ui: "^0.3.2"
```
Flutter < 1.7
......
......@@ -2,53 +2,113 @@ import 'package:cool_ui_example/keyboards/test_keyboard.dart';
import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
import 'package:cool_ui/cool_ui.dart';
import 'package:flutter/services.dart';
class CustomKeyboardDemo extends StatefulWidget{
class CustomKeyboardDemo extends StatefulWidget {
@override
State<StatefulWidget> createState() {
// TODO: implement createState
return CustomKeyboardDemoState();
}
}
class CustomKeyboardDemoState extends State<CustomKeyboardDemo>{
TextEditingController textEditingController = TextEditingController(text:'test');
TextEditingController textEditing2Controller = TextEditingController(text:'test');
class CustomKeyboardDemoState extends State<CustomKeyboardDemo> {
TextEditingController textEditingController =
TextEditingController(text: 'test');
TextEditingController textEditing2Controller =
TextEditingController(text: 'test');
@override
Widget build(BuildContext context) {
// TODO: implement build
return KeyboardMediaQuery(
child: Builder(builder: (ctx) {
// CoolKeyboard.init(ctx);
return Scaffold(
appBar: AppBar(
title: Text("Custom Keyboard Demo"),
return KeyboardMediaQuery(child: Builder(builder: (ctx) {
// CoolKeyboard.init(ctx);
return Scaffold(
appBar: AppBar(
title: Text("Custom Keyboard Demo"),
),
body: ListView(
children: <Widget>[
TextField(
controller: textEditingController,
keyboardType: TextInputType.text,
),
body: ListView(
children: <Widget>[
TextField(
controller: textEditingController,
keyboardType: TextInputType.text,
),
Container(
height: 300.0,
),
TextField(
controller: textEditing2Controller,
decoration: InputDecoration(labelText: '演示键盘弹出后滚动'),
keyboardType: NumberKeyboard.inputType,
Container(
height: 300.0,
),
FlatButton(
child: Text('弹出功能演示'),
onPressed: (){
showInputDialogs(
context: context,messageWidget: Text('弹出输入功能演示'),
keyboardType: NumberKeyboard.inputType
);
},
),
TextField(
controller: textEditing2Controller,
decoration: InputDecoration(labelText: '演示键盘弹出后滚动'),
keyboardType: NumberKeyboard.inputType,
),
TextField(
decoration: InputDecoration(labelText: '多个键盘演示'),
keyboardType: TestKeyboard.inputType,
)
],
));
}));
}
static Future<String> showInputDialogs(
{@required BuildContext context,
Widget titleWidget,
Widget messageWidget,
List<TextInputFormatter> inputFormatters,
TextInputType keyboardType = TextInputType.number}) {
String value;
return showCupertinoDialog<String>(
context: context,
builder: (context) {
// The minimum insets for contents of the Scaffold to keep visible.
List<Widget> children = [];
if (messageWidget != null) {
children.add(messageWidget);
}
children.add(Form(
child: Container(
padding: EdgeInsets.only(top: 10),
child: Material(
child: 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(
title: titleWidget,
content: Column(
children: children,
),
actions: <Widget>[
CupertinoDialogAction(
child: Text("取消"),
onPressed: () => Navigator.of(context).pop(),
),
TextField(
decoration: InputDecoration(labelText: '多个键盘演示'),
keyboardType: TestKeyboard.inputType,
CupertinoDialogAction(
child: Text("確認"),
onPressed: () {
Navigator.of(context).pop(value ?? '');
},
)
],
)
);
})
);
));
});
}
}
\ No newline at end of file
}
......@@ -13,11 +13,13 @@ class KeyboardMediaQuery extends StatefulWidget{
class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{
double keyboardHeight;
ValueNotifier<double> keyboardHeightNotifier;
@override
void initState(){
super.initState();
CoolKeyboard._keyboardHeightNotifier.addListener(onUpdateHeight);
keyboardHeightNotifier = CoolKeyboard._keyboardHeightNotifier;
}
@override
......@@ -28,17 +30,26 @@ class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{
if(data == null){
data = MediaQueryData.fromWindow(WidgetsBinding.instance.window);
}
var bottom = CoolKeyboard._keyboardHeightNotifier.value ?? data.viewInsets.bottom;
// TODO: implement build
return MediaQuery(
child: widget.child,
data:data.copyWith(viewInsets: data.viewInsets.copyWith(bottom: CoolKeyboard._keyboardHeightNotifier.value ?? data.viewInsets.bottom))
data:data.copyWith(
viewInsets: data.viewInsets.copyWith(
bottom: bottom
)
)
);
}
onUpdateHeight(){
try{
setState(()=>{});
}catch(_){}
}catch(_){
Future.delayed(Duration(milliseconds: 16), (){
this.onUpdateHeight();
});
}
}
@override
......
......@@ -5,35 +5,35 @@ packages:
dependency: transitive
description:
name: async
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.3.0"
back_button_interceptor:
dependency: "direct main"
description:
name: back_button_interceptor
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "4.2.2"
boolean_selector:
dependency: transitive
description:
name: boolean_selector
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.0.5"
charcode:
dependency: transitive
description:
name: charcode
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.1.2"
collection:
dependency: transitive
description:
name: collection
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.14.11"
flutter:
......@@ -50,35 +50,35 @@ packages:
dependency: transitive
description:
name: matcher
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.12.5"
meta:
dependency: transitive
description:
name: meta
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.1.7"
path:
dependency: transitive
description:
name: path
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.6.4"
pedantic:
dependency: transitive
description:
name: pedantic
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.8.0+1"
quiver:
dependency: transitive
description:
name: quiver
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.0.5"
sky_engine:
......@@ -90,56 +90,56 @@ packages:
dependency: transitive
description:
name: source_span
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.5.5"
stack_trace:
dependency: transitive
description:
name: stack_trace
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.9.3"
stream_channel:
dependency: transitive
description:
name: stream_channel
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.0.0"
string_scanner:
dependency: transitive
description:
name: string_scanner
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.0.5"
term_glyph:
dependency: transitive
description:
name: term_glyph
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.1.0"
test_api:
dependency: transitive
description:
name: test_api
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.2.5"
typed_data:
dependency: transitive
description:
name: typed_data
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.1.6"
vector_math:
dependency: transitive
description:
name: vector_math
url: "https://pub.dev"
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.0.8"
sdks:
......
name: cool_ui
description: Some practical Widget for flutter,Popover,Weui,Custom Keyboard
version: 0.3.1
version: 0.3.2
author: Kevin <liangkaikevin@gmail.com>
homepage: https://github.com/Im-Kevin/cool_ui
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论