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

修复页面高度未刷新问题

上级 e62fb57e
## [0.3.2]
* TODO: 修复页面高度未刷新问题
## [0.3.1] ## [0.3.1]
* 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.3.0" cool_ui: "^0.3.2"
``` ```
Flutter < 1.7 Flutter < 1.7
......
...@@ -2,53 +2,113 @@ import 'package:cool_ui_example/keyboards/test_keyboard.dart'; ...@@ -2,53 +2,113 @@ import 'package:cool_ui_example/keyboards/test_keyboard.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:cool_ui/cool_ui.dart'; import 'package:cool_ui/cool_ui.dart';
import 'package:flutter/services.dart';
class CustomKeyboardDemo extends StatefulWidget {
class CustomKeyboardDemo extends StatefulWidget{
@override @override
State<StatefulWidget> createState() { State<StatefulWidget> createState() {
// TODO: implement createState // TODO: implement createState
return CustomKeyboardDemoState(); return CustomKeyboardDemoState();
} }
} }
class CustomKeyboardDemoState extends State<CustomKeyboardDemo>{ class CustomKeyboardDemoState extends State<CustomKeyboardDemo> {
TextEditingController textEditingController = TextEditingController(text:'test'); TextEditingController textEditingController =
TextEditingController textEditing2Controller = TextEditingController(text:'test'); TextEditingController(text: 'test');
TextEditingController textEditing2Controller =
TextEditingController(text: 'test');
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
// TODO: implement build // TODO: implement build
return KeyboardMediaQuery( return KeyboardMediaQuery(child: Builder(builder: (ctx) {
child: Builder(builder: (ctx) { // CoolKeyboard.init(ctx);
// CoolKeyboard.init(ctx); return Scaffold(
return Scaffold( appBar: AppBar(
appBar: AppBar( title: Text("Custom Keyboard Demo"),
title: Text("Custom Keyboard Demo"), ),
body: ListView(
children: <Widget>[
TextField(
controller: textEditingController,
keyboardType: TextInputType.text,
), ),
body: ListView( Container(
children: <Widget>[ height: 300.0,
TextField( ),
controller: textEditingController, FlatButton(
keyboardType: TextInputType.text, child: Text('弹出功能演示'),
), onPressed: (){
Container( showInputDialogs(
height: 300.0, context: context,messageWidget: Text('弹出输入功能演示'),
), keyboardType: NumberKeyboard.inputType
TextField( );
controller: textEditing2Controller, },
decoration: InputDecoration(labelText: '演示键盘弹出后滚动'), ),
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( CupertinoDialogAction(
decoration: InputDecoration(labelText: '多个键盘演示'), child: Text("確認"),
keyboardType: TestKeyboard.inputType, onPressed: () {
Navigator.of(context).pop(value ?? '');
},
) )
], ],
) ));
); });
})
);
} }
} }
\ No newline at end of file
...@@ -13,11 +13,13 @@ class KeyboardMediaQuery extends StatefulWidget{ ...@@ -13,11 +13,13 @@ class KeyboardMediaQuery extends StatefulWidget{
class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{ class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{
double keyboardHeight; double keyboardHeight;
ValueNotifier<double> keyboardHeightNotifier;
@override @override
void initState(){ void initState(){
super.initState(); super.initState();
CoolKeyboard._keyboardHeightNotifier.addListener(onUpdateHeight); CoolKeyboard._keyboardHeightNotifier.addListener(onUpdateHeight);
keyboardHeightNotifier = CoolKeyboard._keyboardHeightNotifier;
} }
@override @override
...@@ -28,17 +30,26 @@ class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{ ...@@ -28,17 +30,26 @@ class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{
if(data == null){ if(data == null){
data = MediaQueryData.fromWindow(WidgetsBinding.instance.window); data = MediaQueryData.fromWindow(WidgetsBinding.instance.window);
} }
var bottom = CoolKeyboard._keyboardHeightNotifier.value ?? data.viewInsets.bottom;
// TODO: implement build // TODO: implement build
return MediaQuery( return MediaQuery(
child: widget.child, 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(){ onUpdateHeight(){
try{ try{
setState(()=>{}); setState(()=>{});
}catch(_){} }catch(_){
Future.delayed(Duration(milliseconds: 16), (){
this.onUpdateHeight();
});
}
} }
@override @override
......
...@@ -5,35 +5,35 @@ packages: ...@@ -5,35 +5,35 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: async name: async
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "2.3.0" version: "2.3.0"
back_button_interceptor: back_button_interceptor:
dependency: "direct main" dependency: "direct main"
description: description:
name: back_button_interceptor name: back_button_interceptor
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "4.2.2" version: "4.2.2"
boolean_selector: boolean_selector:
dependency: transitive dependency: transitive
description: description:
name: boolean_selector name: boolean_selector
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.0.5" version: "1.0.5"
charcode: charcode:
dependency: transitive dependency: transitive
description: description:
name: charcode name: charcode
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.1.2" version: "1.1.2"
collection: collection:
dependency: transitive dependency: transitive
description: description:
name: collection name: collection
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.14.11" version: "1.14.11"
flutter: flutter:
...@@ -50,35 +50,35 @@ packages: ...@@ -50,35 +50,35 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: matcher name: matcher
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "0.12.5" version: "0.12.5"
meta: meta:
dependency: transitive dependency: transitive
description: description:
name: meta name: meta
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.1.7" version: "1.1.7"
path: path:
dependency: transitive dependency: transitive
description: description:
name: path name: path
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.6.4" version: "1.6.4"
pedantic: pedantic:
dependency: transitive dependency: transitive
description: description:
name: pedantic name: pedantic
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.8.0+1" version: "1.8.0+1"
quiver: quiver:
dependency: transitive dependency: transitive
description: description:
name: quiver name: quiver
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "2.0.5" version: "2.0.5"
sky_engine: sky_engine:
...@@ -90,56 +90,56 @@ packages: ...@@ -90,56 +90,56 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: source_span name: source_span
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.5.5" version: "1.5.5"
stack_trace: stack_trace:
dependency: transitive dependency: transitive
description: description:
name: stack_trace name: stack_trace
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.9.3" version: "1.9.3"
stream_channel: stream_channel:
dependency: transitive dependency: transitive
description: description:
name: stream_channel name: stream_channel
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "2.0.0" version: "2.0.0"
string_scanner: string_scanner:
dependency: transitive dependency: transitive
description: description:
name: string_scanner name: string_scanner
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.0.5" version: "1.0.5"
term_glyph: term_glyph:
dependency: transitive dependency: transitive
description: description:
name: term_glyph name: term_glyph
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.1.0" version: "1.1.0"
test_api: test_api:
dependency: transitive dependency: transitive
description: description:
name: test_api name: test_api
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "0.2.5" version: "0.2.5"
typed_data: typed_data:
dependency: transitive dependency: transitive
description: description:
name: typed_data name: typed_data
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.1.6" version: "1.1.6"
vector_math: vector_math:
dependency: transitive dependency: transitive
description: description:
name: vector_math name: vector_math
url: "https://pub.dev" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "2.0.8" version: "2.0.8"
sdks: sdks:
......
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.3.1 version: 0.3.2
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 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论