Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
fad51ad6
提交
fad51ad6
authored
12月 17, 2019
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复了键盘高度从小变大的时候无法改变的问题, issues: 36
键盘添加了传参功能,可从外部传参到键盘内部
上级
090360a3
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
96 行增加
和
57 行删除
+96
-57
CHANGELOG.md
CHANGELOG.md
+4
-0
README.md
README.md
+1
-1
custom_keyboard.md
documents/custom_keyboard.md
+1
-1
test_keyboard.dart
example/lib/keyboards/test_keyboard.dart
+2
-2
keyboard_manager.dart
lib/keyboards/keyboard_manager.dart
+86
-51
number_keyboard.dart
lib/keyboards/number_keyboard.dart
+1
-1
pubspec.yaml
pubspec.yaml
+1
-1
没有找到文件。
CHANGELOG.md
浏览文件 @
fad51ad6
## [0.4.0]
*
TODO: 修复了键盘高度从小变大的时候无法改变的问题, issues: 36
*
TODO: 键盘添加了传参功能,可从外部传参到键盘内部
## [0.3.3]
*
TODO: 修复了键盘高度不同的时候不会改变问题, issues: 36
...
...
README.md
浏览文件 @
fad51ad6
...
...
@@ -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
...
...
documents/custom_keyboard.md
浏览文件 @
fad51ad6
...
...
@@ -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
));
}
...
...
example/lib/keyboards/test_keyboard.dart
浏览文件 @
fad51ad6
...
...
@@ -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
));
}
...
...
lib/keyboards/keyboard_manager.dart
浏览文件 @
fad51ad6
...
...
@@ -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
(
_
)
{}
}
}
lib/keyboards/number_keyboard.dart
浏览文件 @
fad51ad6
...
...
@@ -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
));
}
...
...
pubspec.yaml
浏览文件 @
fad51ad6
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
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论