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

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

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