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

修复了键盘高度从小变大的时候无法改变的问题, issues: 36

键盘添加了传参功能,可从外部传参到键盘内部
上级 090360a3
## [0.4.0]
* TODO: 修复了键盘高度从小变大的时候无法改变的问题, issues: 36
* TODO: 键盘添加了传参功能,可从外部传参到键盘内部
## [0.3.3] ## [0.3.3]
* TODO: 修复了键盘高度不同的时候不会改变问题, issues: 36 * TODO: 修复了键盘高度不同的时候不会改变问题, issues: 36
......
...@@ -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.3" cool_ui: "^0.4.0"
``` ```
Flutter < 1.7 Flutter < 1.7
......
...@@ -19,7 +19,7 @@ class NumberKeyboard extends StatelessWidget{ ...@@ -19,7 +19,7 @@ class NumberKeyboard extends StatelessWidget{
const NumberKeyboard({this.controller}); const NumberKeyboard({this.controller});
static register(){ //注册键盘的方法 static register(){ //注册键盘的方法
CoolKeyboard.addKeyboard(NumberKeyboard.inputType,KeyboardConfig(builder: (context,controller){ CoolKeyboard.addKeyboard(NumberKeyboard.inputType,KeyboardConfig(builder: (context,controller, params){ // 可通过CKTextInputType传参数到键盘内部
return NumberKeyboard(controller: controller); return NumberKeyboard(controller: controller);
},getHeight: NumberKeyboard.getHeight)); },getHeight: NumberKeyboard.getHeight));
} }
......
...@@ -6,13 +6,13 @@ class TestKeyboard extends StatelessWidget{ ...@@ -6,13 +6,13 @@ class TestKeyboard extends StatelessWidget{
static const CKTextInputType inputType = const CKTextInputType(name:'CKTestKeyboard'); static const CKTextInputType inputType = const CKTextInputType(name:'CKTestKeyboard');
static double getHeight(BuildContext ctx){ static double getHeight(BuildContext ctx){
MediaQueryData mediaQuery = MediaQuery.of(ctx); MediaQueryData mediaQuery = MediaQuery.of(ctx);
return mediaQuery.size.width / 3 / 2 * 4; return mediaQuery.size.width / 3 / 2 * 2;
} }
final KeyboardController controller ; final KeyboardController controller ;
const TestKeyboard({this.controller}); const TestKeyboard({this.controller});
static register(){ static register(){
CoolKeyboard.addKeyboard(TestKeyboard.inputType,KeyboardConfig(builder: (context,controller){ CoolKeyboard.addKeyboard(TestKeyboard.inputType,KeyboardConfig(builder: (context,controller, params){
return TestKeyboard(controller: controller); return TestKeyboard(controller: controller);
},getHeight: TestKeyboard.getHeight)); },getHeight: TestKeyboard.getHeight));
} }
......
...@@ -2,7 +2,7 @@ part of cool_ui; ...@@ -2,7 +2,7 @@ part of cool_ui;
typedef GetKeyboardHeight = double Function(BuildContext context); typedef GetKeyboardHeight = double Function(BuildContext context);
typedef KeyboardBuilder = Widget Function( typedef KeyboardBuilder = Widget Function(
BuildContext context, KeyboardController controller); BuildContext context, KeyboardController controller, String param);
class CoolKeyboard { class CoolKeyboard {
static JSONMethodCodec _codec = const JSONMethodCodec(); static JSONMethodCodec _codec = const JSONMethodCodec();
...@@ -14,7 +14,10 @@ class CoolKeyboard { ...@@ -14,7 +14,10 @@ class CoolKeyboard {
static GlobalKey<KeyboardPageState> _pageKey; static GlobalKey<KeyboardPageState> _pageKey;
static bool isInterceptor = false; static bool isInterceptor = false;
static ValueNotifier<double> _keyboardHeightNotifier = ValueNotifier(null); static ValueNotifier<double> _keyboardHeightNotifier = ValueNotifier(null)
..addListener(updateKeyboardHeight);
static String _keyboardParam;
static init(BuildContext context) { static init(BuildContext context) {
_context = context; _context = context;
...@@ -61,6 +64,9 @@ class CoolKeyboard { ...@@ -61,6 +64,9 @@ class CoolKeyboard {
_keyboards.forEach((inputType, keyboardConfig) { _keyboards.forEach((inputType, keyboardConfig) {
if (inputType.name == setInputType['name']) { if (inputType.name == setInputType['name']) {
client = InputClient.fromJSON(methodCall.arguments); client = InputClient.fromJSON(methodCall.arguments);
_keyboardParam = (client.configuration.inputType as CKTextInputType).params;
clearKeyboard(); clearKeyboard();
_currentKeyboard = keyboardConfig; _currentKeyboard = keyboardConfig;
_keyboardController = KeyboardController(client: client) _keyboardController = KeyboardController(client: client)
...@@ -76,7 +82,7 @@ class CoolKeyboard { ...@@ -76,7 +82,7 @@ class CoolKeyboard {
(data) {}); (data) {});
}); });
if (_pageKey != null) { if (_pageKey != null) {
_pageKey.currentState.update(); _pageKey.currentState?.update();
} }
} }
}); });
...@@ -135,7 +141,7 @@ class CoolKeyboard { ...@@ -135,7 +141,7 @@ class CoolKeyboard {
return KeyboardPage( return KeyboardPage(
key: tempKey, key: tempKey,
builder: (ctx) { builder: (ctx) {
return _currentKeyboard?.builder(ctx, _keyboardController); return _currentKeyboard?.builder(ctx, _keyboardController, _keyboardParam);
}, },
height: _keyboardHeightNotifier.value); height: _keyboardHeightNotifier.value);
} else { } else {
...@@ -155,18 +161,24 @@ class CoolKeyboard { ...@@ -155,18 +161,24 @@ class CoolKeyboard {
BackButtonInterceptor.removeByName('CustomKeyboard'); BackButtonInterceptor.removeByName('CustomKeyboard');
if (_keyboardEntry != null && _pageKey != null) { if (_keyboardEntry != null && _pageKey != null) {
_keyboardHeightNotifier.value = null; _keyboardHeightNotifier.value = null;
_pageKey.currentState.animationController // _pageKey.currentState.animationController
.addStatusListener((AnimationStatus status) { // .addStatusListener((AnimationStatus status) {
if (status == AnimationStatus.dismissed || // if (status == AnimationStatus.dismissed ||
status == AnimationStatus.completed) { // status == AnimationStatus.completed) {
// if (_keyboardEntry != null) {
// _keyboardEntry.remove();
// _keyboardEntry = null;
// }
// }
// });
if (animation) {
_pageKey.currentState.exitKeyboard();
Future.delayed(Duration(milliseconds: 116)).then((_) {
if (_keyboardEntry != null) { if (_keyboardEntry != null) {
_keyboardEntry.remove(); _keyboardEntry.remove();
_keyboardEntry = null; _keyboardEntry = null;
} }
} });
});
if (animation) {
_pageKey.currentState.exitKeyboard();
} else { } else {
_keyboardEntry.remove(); _keyboardEntry.remove();
_keyboardEntry = null; _keyboardEntry = null;
...@@ -195,6 +207,12 @@ class CoolKeyboard { ...@@ -195,6 +207,12 @@ class CoolKeyboard {
defaultBinaryMessenger.handlePlatformMessage("flutter/textinput", defaultBinaryMessenger.handlePlatformMessage("flutter/textinput",
_codec.encodeMethodCall(callbackMethodCall), (data) {}); _codec.encodeMethodCall(callbackMethodCall), (data) {});
} }
static updateKeyboardHeight() {
if (_pageKey != null && _pageKey.currentState != null) {
_pageKey.currentState.updateHeight(_keyboardHeightNotifier.value);
}
}
} }
class KeyboardConfig { class KeyboardConfig {
...@@ -284,8 +302,9 @@ class InputClient { ...@@ -284,8 +302,9 @@ class InputClient {
class CKTextInputType extends TextInputType { class CKTextInputType extends TextInputType {
final String name; final String name;
final String params;
const CKTextInputType({this.name, bool signed, bool decimal}) const CKTextInputType({this.name, bool signed, bool decimal, this.params})
: super.numberWithOptions(signed: signed, decimal: decimal); : super.numberWithOptions(signed: signed, decimal: decimal);
@override @override
...@@ -294,6 +313,7 @@ class CKTextInputType extends TextInputType { ...@@ -294,6 +313,7 @@ class CKTextInputType extends TextInputType {
'name': name, 'name': name,
'signed': signed, 'signed': signed,
'decimal': decimal, 'decimal': decimal,
'params': params
}; };
} }
...@@ -307,18 +327,22 @@ class CKTextInputType extends TextInputType { ...@@ -307,18 +327,22 @@ class CKTextInputType extends TextInputType {
bool operator ==(Object target) { bool operator ==(Object target) {
if (target is CKTextInputType) { if (target is CKTextInputType) {
if (this.toString() == target.toString()) { if (this.name == target.toString()) {
return true; return true;
} }
} }
return false; return false;
} }
@override
int get hashCode => this.toString().hashCode;
factory CKTextInputType.fromJSON(Map<String, dynamic> encoded) { factory CKTextInputType.fromJSON(Map<String, dynamic> encoded) {
return CKTextInputType( return CKTextInputType(
name: encoded['name'], name: encoded['name'],
signed: encoded['signed'], signed: encoded['signed'],
decimal: encoded['decimal']); decimal: encoded['decimal'],
params: encoded['params']);
} }
} }
...@@ -331,62 +355,73 @@ class KeyboardPage extends StatefulWidget { ...@@ -331,62 +355,73 @@ class KeyboardPage extends StatefulWidget {
State<StatefulWidget> createState() => KeyboardPageState(); State<StatefulWidget> createState() => KeyboardPageState();
} }
class KeyboardPageState extends State<KeyboardPage> class KeyboardPageState extends State<KeyboardPage> {
with SingleTickerProviderStateMixin {
AnimationController animationController;
Animation<double> doubleAnimation;
double bottom;
Widget _lastBuildWidget; Widget _lastBuildWidget;
bool isClose = false;
double _height = 0;
@override @override
void initState() { void initState() {
// TODO: implement initState // TODO: implement initState
super.initState(); super.initState();
animationController = new AnimationController( Future.delayed(Duration(milliseconds: 1)).then((_) {
duration: new Duration(milliseconds: 100), vsync: this) setState(() {
..addListener(() => setState(() {})); _height = widget.height;
doubleAnimation = new Tween(begin: 0.0, end: widget.height) });
.animate(animationController) });
..addListener(() => setState(() {}));
animationController.forward(from: 0.0);
} }
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return AnimatedPositioned(
return Positioned( child: IntrinsicHeight(child: Builder(
child: IntrinsicHeight(child: Builder( builder: (ctx) {
builder: (ctx) { var result = widget.builder(ctx);
var result = widget.builder(ctx); if (result != null) {
if (result != null) { _lastBuildWidget = result;
_lastBuildWidget = result; }
} return ConstrainedBox(
return ConstrainedBox( constraints: BoxConstraints(
constraints: BoxConstraints(minHeight: 0,minWidth: 0,maxHeight: widget.height, maxWidth: _ScreenUtil.getScreenW(context)), minHeight: 0,
child: _lastBuildWidget, minWidth: 0,
); maxHeight: _height,
}, maxWidth: _ScreenUtil.getScreenW(context)),
)), child: _lastBuildWidget,
bottom: (widget.height - doubleAnimation.value) * -1); );
},
)),
left: 0,
width: _ScreenUtil.getScreenW(context),
bottom: _height * (isClose ? -1 : 0),
height: _height,
duration: Duration(milliseconds: 100),
);
} }
@override @override
void dispose() { void dispose() {
if (animationController.status == AnimationStatus.forward || // if (animationController.status == AnimationStatus.forward ||
animationController.status == AnimationStatus.reverse) { // animationController.status == AnimationStatus.reverse) {
animationController.notifyStatusListeners(AnimationStatus.dismissed); // animationController.notifyStatusListeners(AnimationStatus.dismissed);
} // }
animationController.dispose(); // animationController.dispose();
super.dispose(); super.dispose();
} }
exitKeyboard() { exitKeyboard() {
animationController.reverse(); isClose = true;
} }
update() { update() {
try{ try {
setState(()=>{}); setState(() => {});
}catch(_){} } catch (_) {}
}
updateHeight(double height) {
try {
this._height = height ?? 0;
setState(() => {});
} catch (_) {}
} }
} }
...@@ -10,7 +10,7 @@ class NumberKeyboard extends StatelessWidget{ ...@@ -10,7 +10,7 @@ class NumberKeyboard extends StatelessWidget{
const NumberKeyboard({this.controller}); const NumberKeyboard({this.controller});
static register(){ static register(){
CoolKeyboard.addKeyboard(NumberKeyboard.inputType,KeyboardConfig(builder: (context,controller){ CoolKeyboard.addKeyboard(NumberKeyboard.inputType,KeyboardConfig(builder: (context,controller, params){
return NumberKeyboard(controller: controller); return NumberKeyboard(controller: controller);
},getHeight: NumberKeyboard.getHeight)); },getHeight: NumberKeyboard.getHeight));
} }
......
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.3 version: 0.4.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 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论