提交 5766382a authored 作者: Kevin's avatar Kevin

升级版本0.3.0

上级 a09b2e3f
## [0.3.0]
* TODO: 优化了键盘的使用方式
## [0.2.2] ## [0.2.2]
* 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.2.1" cool_ui: "^0.3.0"
``` ```
Flutter < 1.7 Flutter < 1.7
......
...@@ -42,12 +42,12 @@ class NumberKeyboard extends StatelessWidget{ ...@@ -42,12 +42,12 @@ class NumberKeyboard extends StatelessWidget{
``` ```
## Step2 ## Step2
注册键盘 注册键盘,并且添加了KeyboardRootWidget
```dart ```dart
void main(){ void main(){
NumberKeyboard.register(); //注册键盘 NumberKeyboard.register(); //注册键盘
runApp(MyApp()); runApp(KeyboardRootWidget(child: MyApp())); //添加了KeyboardRootWidget
} }
``` ```
...@@ -58,10 +58,7 @@ void main(){ ...@@ -58,10 +58,7 @@ void main(){
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return KeyboardMediaQuery(//用于键盘弹出的时候页面可以滚动到输入框的位置 return KeyboardMediaQuery(//用于键盘弹出的时候页面可以滚动到输入框的位置
child: Builder(builder: (ctx) { child: Page
CoolKeyboard.init(ctx); //初始化键盘监听并且传递当前页面的context
return Page; //返回当前页面
})
); );
} }
``` ```
...@@ -72,7 +69,7 @@ Widget build(BuildContext context) { ...@@ -72,7 +69,7 @@ Widget build(BuildContext context) {
```dart ```dart
TextField( TextField(
... ...
keyboardType: NumberKeyboard.inputType, 像平常一样设置键盘输入类型一样将Step2编写的inputType传递进去 keyboardType: NumberKeyboard.inputType, 像平常一样设置键盘输入类型一样将Step1编写的inputType传递进去
... ...
) )
``` ```
......
#!/bin/sh
# This is a generated file; do not edit or check into version control.
export "FLUTTER_ROOT=G:\flutter"
export "FLUTTER_APPLICATION_PATH=G:\TestCode\cool_ui\cool_ui\example"
export "FLUTTER_TARGET=lib\main.dart"
export "FLUTTER_BUILD_DIR=build"
export "SYMROOT=${SOURCE_ROOT}/../build\ios"
export "FLUTTER_FRAMEWORK_DIR=G:\flutter\bin\cache\artifacts\engine\ios"
export "FLUTTER_BUILD_NAME=1.0.0"
export "FLUTTER_BUILD_NUMBER=1"
...@@ -8,36 +8,32 @@ import 'package:flutter/material.dart'; ...@@ -8,36 +8,32 @@ import 'package:flutter/material.dart';
import 'keyboards/test_keyboard.dart'; import 'keyboards/test_keyboard.dart';
void main(){ void main() {
NumberKeyboard.register(); NumberKeyboard.register();
TestKeyboard.register(); TestKeyboard.register();
runApp(MyApp()); runApp(KeyboardRootWidget(child: MyApp()));
// runApp(MyApp());
} }
class MyApp extends StatelessWidget { class MyApp extends StatelessWidget {
// This widget is the root of your application. // This widget is the root of your application.
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return WeuiToastConfig( return WeuiToastConfig(
data: WeuiToastConfigData( data: WeuiToastConfigData(successText: '测试ConfigData'),
successText: '测试ConfigData' child: MaterialApp(
), title: 'Flutter Demo',
child:MaterialApp( theme: ThemeData(
title: 'Flutter Demo', // This is the theme of your application.
theme: ThemeData( //
// This is the theme of your application. // Try running your application with "flutter run". You'll see the
// // application has a blue toolbar. Then, without quitting the app, try
// Try running your application with "flutter run". You'll see the // changing the primarySwatch below to Colors.green and then invoke
// application has a blue toolbar. Then, without quitting the app, try // "hot reload" (press "r" in the console where you ran "flutter run",
// changing the primarySwatch below to Colors.green and then invoke // or press Run > Flutter Hot Reload in IntelliJ). Notice that the
// "hot reload" (press "r" in the console where you ran "flutter run", // counter didn't reset back to zero; the application is not restarted.
// or press Run > Flutter Hot Reload in IntelliJ). Notice that the primarySwatch: Colors.blue),
// counter didn't reset back to zero; the application is not restarted. home: MyHomePage(title: 'Flutter Demo Home Page')));
primarySwatch: Colors.blue
),
home: MyHomePage(title: 'Flutter Demo Home Page')
));
} }
} }
...@@ -81,7 +77,7 @@ class _MyHomePageState extends State<MyHomePage> { ...@@ -81,7 +77,7 @@ class _MyHomePageState extends State<MyHomePage> {
// The Flutter framework has been optimized to make rerunning build methods // The Flutter framework has been optimized to make rerunning build methods
// fast, so that you can just rebuild anything that needs updating rather // fast, so that you can just rebuild anything that needs updating rather
// than having to individually change instances of widgets. // than having to individually change instances of widgets.
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by // Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title. // the App.build method, and use it to set our appbar title.
...@@ -92,30 +88,33 @@ class _MyHomePageState extends State<MyHomePage> { ...@@ -92,30 +88,33 @@ class _MyHomePageState extends State<MyHomePage> {
ListTile( ListTile(
leading: Icon(CoolUIExampleIcon.popover), leading: Icon(CoolUIExampleIcon.popover),
title: Text("Popover"), title: Text("Popover"),
onTap: (){ onTap: () {
Navigator.of(context).push(MaterialPageRoute(builder: (context)=>PopoverDemo())); Navigator.of(context).push(
MaterialPageRoute(builder: (context) => PopoverDemo()));
}, },
), ),
ListTile( ListTile(
title: Text("PaintEvent"), title: Text("PaintEvent"),
onTap: (){ onTap: () {
Navigator.of(context).push(MaterialPageRoute(builder: (context)=>PaintEventDemo())); Navigator.of(context).push(
MaterialPageRoute(builder: (context) => PaintEventDemo()));
}, },
), ),
ListTile( ListTile(
title: Text("WeuiToastEvent"), title: Text("WeuiToastEvent"),
onTap: (){ onTap: () {
Navigator.of(context).push(MaterialPageRoute(builder: (context)=>WeuiToastDemo())); Navigator.of(context).push(
MaterialPageRoute(builder: (context) => WeuiToastDemo()));
}, },
), ),
ListTile( ListTile(
title: Text("CustomKeyboardEvent"), title: Text("CustomKeyboardEvent"),
onTap: (){ onTap: () {
Navigator.of(context).push(MaterialPageRoute(builder: (context)=>CustomKeyboardDemo())); Navigator.of(context).push(MaterialPageRoute(
builder: (context) => CustomKeyboardDemo()));
}, },
) )
], ],
) ));
);
} }
} }
...@@ -22,7 +22,7 @@ class CustomKeyboardDemoState extends State<CustomKeyboardDemo>{ ...@@ -22,7 +22,7 @@ class CustomKeyboardDemoState extends State<CustomKeyboardDemo>{
// 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"),
......
...@@ -25,4 +25,5 @@ part 'dialogs/weui_toast.dart'; ...@@ -25,4 +25,5 @@ part 'dialogs/weui_toast.dart';
part 'keyboards/keyboard_manager.dart'; part 'keyboards/keyboard_manager.dart';
part 'keyboards/number_keyboard.dart'; part 'keyboards/number_keyboard.dart';
part 'keyboards/keyboard_controller.dart'; part 'keyboards/keyboard_controller.dart';
part 'keyboards/keyboard_media_query.dart'; part 'keyboards/keyboard_media_query.dart';
\ No newline at end of file part 'keyboards/keyboard_root.dart';
\ No newline at end of file
...@@ -14,8 +14,7 @@ class CoolKeyboard { ...@@ -14,8 +14,7 @@ class CoolKeyboard {
static GlobalKey<KeyboardPageState> _pageKey; static GlobalKey<KeyboardPageState> _pageKey;
static bool isInterceptor = false; static bool isInterceptor = false;
static double get keyboardHeight => _keyboardHeight; static ValueNotifier<double> _keyboardHeightNotifier = ValueNotifier(null);
static double _keyboardHeight;
static init(BuildContext context) { static init(BuildContext context) {
_context = context; _context = context;
...@@ -76,8 +75,12 @@ class CoolKeyboard { ...@@ -76,8 +75,12 @@ class CoolKeyboard {
_codec.encodeMethodCall(callbackMethodCall), _codec.encodeMethodCall(callbackMethodCall),
(data) {}); (data) {});
}); });
if (_pageKey != null) {
_pageKey.currentState.update();
}
} }
}); });
if (client != null) { if (client != null) {
await _sendPlatformMessage("flutter/textinput", await _sendPlatformMessage("flutter/textinput",
_codec.encodeMethodCall(MethodCall('TextInput.hide'))); _codec.encodeMethodCall(MethodCall('TextInput.hide')));
...@@ -119,21 +122,22 @@ class CoolKeyboard { ...@@ -119,21 +122,22 @@ class CoolKeyboard {
static openKeyboard() { static openKeyboard() {
if (_keyboardEntry != null) return; if (_keyboardEntry != null) return;
_pageKey = GlobalKey<KeyboardPageState>(); _pageKey = GlobalKey<KeyboardPageState>();
_keyboardHeight = _currentKeyboard.getHeight(_context); var keyboardHeight = _currentKeyboard.getHeight(_context);
KeyboardMediaQueryState queryState = _context _keyboardHeightNotifier.value = keyboardHeight;
.ancestorStateOfType(const TypeMatcher<KeyboardMediaQueryState>()) // KeyboardMediaQueryState queryState = _context
as KeyboardMediaQueryState; // .ancestorStateOfType(const TypeMatcher<KeyboardMediaQueryState>())
queryState.update(); // as KeyboardMediaQueryState;
// queryState.update();
var tempKey = _pageKey; var tempKey = _pageKey;
_keyboardEntry = OverlayEntry(builder: (ctx) { _keyboardEntry = OverlayEntry(builder: (ctx) {
if (_currentKeyboard != null && _keyboardHeight != null) { if (_currentKeyboard != null && _keyboardHeightNotifier.value != null) {
return KeyboardPage( return KeyboardPage(
key: tempKey, key: tempKey,
child: Builder(builder: (ctx) { builder: (ctx) {
return _currentKeyboard.builder(ctx, _keyboardController); return _currentKeyboard?.builder(ctx, _keyboardController);
}), },
height: _keyboardHeight); height: _keyboardHeightNotifier.value);
} else { } else {
return Container(); return Container();
} }
...@@ -150,7 +154,7 @@ class CoolKeyboard { ...@@ -150,7 +154,7 @@ class CoolKeyboard {
static hideKeyboard({bool animation = true}) { static hideKeyboard({bool animation = true}) {
BackButtonInterceptor.removeByName('CustomKeyboard'); BackButtonInterceptor.removeByName('CustomKeyboard');
if (_keyboardEntry != null && _pageKey != null) { if (_keyboardEntry != null && _pageKey != null) {
_keyboardHeight = null; _keyboardHeightNotifier.value = null;
_pageKey.currentState.animationController _pageKey.currentState.animationController
.addStatusListener((AnimationStatus status) { .addStatusListener((AnimationStatus status) {
if (status == AnimationStatus.dismissed || if (status == AnimationStatus.dismissed ||
...@@ -169,14 +173,12 @@ class CoolKeyboard { ...@@ -169,14 +173,12 @@ class CoolKeyboard {
} }
} }
_pageKey = null; _pageKey = null;
try{ try {
KeyboardMediaQueryState queryState = _context // KeyboardMediaQueryState queryState = _context
.ancestorStateOfType(const TypeMatcher<KeyboardMediaQueryState>()) // .ancestorStateOfType(const TypeMatcher<KeyboardMediaQueryState>())
as KeyboardMediaQueryState; // as KeyboardMediaQueryState;
queryState.update(); // queryState.update();
}catch(_){ } catch (_) {}
}
} }
static clearKeyboard() { static clearKeyboard() {
...@@ -321,9 +323,9 @@ class CKTextInputType extends TextInputType { ...@@ -321,9 +323,9 @@ class CKTextInputType extends TextInputType {
} }
class KeyboardPage extends StatefulWidget { class KeyboardPage extends StatefulWidget {
final Widget child; final WidgetBuilder builder;
final double height; final double height;
const KeyboardPage({this.child, this.height, Key key}) : super(key: key); const KeyboardPage({this.builder, this.height, Key key}) : super(key: key);
@override @override
State<StatefulWidget> createState() => KeyboardPageState(); State<StatefulWidget> createState() => KeyboardPageState();
...@@ -334,6 +336,7 @@ class KeyboardPageState extends State<KeyboardPage> ...@@ -334,6 +336,7 @@ class KeyboardPageState extends State<KeyboardPage>
AnimationController animationController; AnimationController animationController;
Animation<double> doubleAnimation; Animation<double> doubleAnimation;
double bottom; double bottom;
Widget _lastBuildWidget;
@override @override
void initState() { void initState() {
...@@ -351,7 +354,15 @@ class KeyboardPageState extends State<KeyboardPage> ...@@ -351,7 +354,15 @@ class KeyboardPageState extends State<KeyboardPage>
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Positioned( return Positioned(
child: IntrinsicHeight(child: widget.child), child: IntrinsicHeight(child: Builder(
builder: (ctx) {
var result = widget.builder(ctx);
if (result != null) {
_lastBuildWidget = result;
}
return _lastBuildWidget;
},
)),
bottom: (widget.height - doubleAnimation.value) * -1); bottom: (widget.height - doubleAnimation.value) * -1);
} }
...@@ -368,4 +379,8 @@ class KeyboardPageState extends State<KeyboardPage> ...@@ -368,4 +379,8 @@ class KeyboardPageState extends State<KeyboardPage>
exitKeyboard() { exitKeyboard() {
animationController.reverse(); animationController.reverse();
} }
update() {
this.setState(() {});
}
} }
...@@ -12,19 +12,30 @@ class KeyboardMediaQuery extends StatefulWidget{ ...@@ -12,19 +12,30 @@ class KeyboardMediaQuery extends StatefulWidget{
} }
class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{ class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{
double keyboardHeight;
@override
void initState(){
super.initState();
CoolKeyboard._keyboardHeightNotifier.addListener(onUpdateHeight);
}
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
// TODO: implement build // TODO: implement build
var data = MediaQuery.of(context); var data = MediaQuery.of(context, nullOk: true);
if(data == null){
data = MediaQueryData.fromWindow(WidgetsBinding.instance.window);
}
// 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.keyboardHeight)) data:data.copyWith(viewInsets: data.viewInsets.copyWith(bottom: CoolKeyboard._keyboardHeightNotifier.value ?? data.viewInsets.bottom))
); );
} }
update(){ onUpdateHeight(){
setState(()=>{}); setState(()=>{});
} }
} }
\ No newline at end of file
part of cool_ui;
class KeyboardRootWidget extends StatefulWidget {
final Widget child;
/// The text direction for this subtree.
final TextDirection textDirection;
const KeyboardRootWidget({Key key, this.child, this.textDirection = TextDirection.ltr}) : super(key: key);
@override
State<StatefulWidget> createState() {
// TODO: implement createState
return KeyboardRootState();
}
}
class KeyboardRootState extends State<KeyboardRootWidget> {
List<OverlayEntry> _initialEntries = [];
@override
void initState() {
super.initState();
_initialEntries.add(this.initChild());
}
@override
Widget build(BuildContext context) {
// TODO: implement build
return Directionality(
textDirection: widget.textDirection,
child: KeyboardMediaQuery(
child: Overlay(
initialEntries: _initialEntries,
)));
}
OverlayEntry initChild() {
return OverlayEntry(builder: (ctx) {
CoolKeyboard.init(ctx);
return widget.child;
});
}
}
...@@ -7,7 +7,7 @@ packages: ...@@ -7,7 +7,7 @@ packages:
name: async name: async
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "2.2.0" version: "2.3.0"
back_button_interceptor: back_button_interceptor:
dependency: "direct main" dependency: "direct main"
description: description:
...@@ -21,7 +21,7 @@ packages: ...@@ -21,7 +21,7 @@ packages:
name: boolean_selector name: boolean_selector
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.0.4" version: "1.0.5"
charcode: charcode:
dependency: transitive dependency: transitive
description: description:
...@@ -59,28 +59,28 @@ packages: ...@@ -59,28 +59,28 @@ packages:
name: meta name: meta
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.1.6" version: "1.1.7"
path: path:
dependency: transitive dependency: transitive
description: description:
name: path name: path
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.6.2" version: "1.6.4"
pedantic: pedantic:
dependency: transitive dependency: transitive
description: description:
name: pedantic name: pedantic
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.7.0" version: "1.8.0+1"
quiver: quiver:
dependency: transitive dependency: transitive
description: description:
name: quiver name: quiver
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "2.0.3" version: "2.0.5"
sky_engine: sky_engine:
dependency: transitive dependency: transitive
description: flutter description: flutter
...@@ -113,7 +113,7 @@ packages: ...@@ -113,7 +113,7 @@ packages:
name: string_scanner name: string_scanner
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.0.4" version: "1.0.5"
term_glyph: term_glyph:
dependency: transitive dependency: transitive
description: description:
......
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.2.2 version: 0.3.0
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 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论