Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
4e45045a
提交
4e45045a
authored
5月 24, 2020
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix Bug Issues:47
上级
75484143
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
48 行增加
和
24 行删除
+48
-24
CHANGELOG.md
CHANGELOG.md
+3
-0
README.md
README.md
+1
-1
custom_keyboard.dart
example/lib/pages/custom_keyboard.dart
+1
-1
keyboard_manager.dart
lib/keyboards/keyboard_manager.dart
+42
-21
pubspec.yaml
pubspec.yaml
+1
-1
没有找到文件。
CHANGELOG.md
浏览文件 @
4e45045a
## [0.5.4]
*
TODO: Fix Bug Issues:47
## [0.5.3]
*
TODO: 修复键盘有时候不会收起来的问题
...
...
README.md
浏览文件 @
4e45045a
...
...
@@ -9,7 +9,7 @@ Usage Add this to your package's pubspec.yaml file:
Flutter >=1.17
```
yaml
dependencies
:
cool_ui
:
"
^0.5.
3
"
cool_ui
:
"
^0.5.
4
"
```
Flutter >=1.7
...
...
example/lib/pages/custom_keyboard.dart
浏览文件 @
4e45045a
...
...
@@ -52,7 +52,7 @@ class CustomKeyboardDemoState extends State<CustomKeyboardDemo> {
),
TextField
(
decoration:
InputDecoration
(
labelText:
'多个键盘演示'
),
keyboardType:
Test
Keyboard
.
inputType
,
keyboardType:
Number
Keyboard
.
inputType
,
)
],
));
...
...
lib/keyboards/keyboard_manager.dart
浏览文件 @
4e45045a
...
...
@@ -19,6 +19,8 @@ class CoolKeyboard {
static
String
_keyboardParam
;
static
Timer
clearTask
;
static
init
(
BuildContext
context
)
{
_context
=
context
;
interceptorInput
();
...
...
@@ -27,12 +29,16 @@ class CoolKeyboard {
static
interceptorInput
()
{
if
(
isInterceptor
)
return
;
isInterceptor
=
true
;
ServicesBinding
.
instance
.
defaultBinaryMessenger
.
setMockMessageHandler
(
"flutter/textinput"
,
(
ByteData
data
)
async
{
ServicesBinding
.
instance
.
defaultBinaryMessenger
.
setMockMessageHandler
(
"flutter/textinput"
,
(
ByteData
data
)
async
{
var
methodCall
=
_codec
.
decodeMethodCall
(
data
);
switch
(
methodCall
.
method
)
{
case
'TextInput.show'
:
if
(
_currentKeyboard
!=
null
)
{
if
(
clearTask
!=
null
)
{
clearTask
.
cancel
();
clearTask
=
null
;
}
openKeyboard
();
return
_codec
.
encodeSuccessEnvelope
(
null
);
}
else
{
...
...
@@ -41,7 +47,9 @@ class CoolKeyboard {
break
;
case
'TextInput.hide'
:
if
(
_currentKeyboard
!=
null
)
{
hideKeyboard
();
if
(
clearTask
==
null
){
clearTask
=
new
Timer
(
Duration
(
milliseconds:
16
),
()=>
hideKeyboard
(
animation:
true
));
}
return
_codec
.
encodeSuccessEnvelope
(
null
);
}
else
{
return
await
_sendPlatformMessage
(
"flutter/textinput"
,
data
);
...
...
@@ -55,7 +63,9 @@ class CoolKeyboard {
}
break
;
case
'TextInput.clearClient'
:
hideKeyboard
(
animation:
true
);
if
(
clearTask
==
null
){
clearTask
=
new
Timer
(
Duration
(
milliseconds:
16
),
()=>
hideKeyboard
(
animation:
true
));
}
clearKeyboard
();
break
;
case
'TextInput.setClient'
:
...
...
@@ -65,7 +75,8 @@ class CoolKeyboard {
if
(
inputType
.
name
==
setInputType
[
'name'
])
{
client
=
InputClient
.
fromJSON
(
methodCall
.
arguments
);
_keyboardParam
=
(
client
.
configuration
.
inputType
as
CKTextInputType
).
params
;
_keyboardParam
=
(
client
.
configuration
.
inputType
as
CKTextInputType
).
params
;
clearKeyboard
();
_currentKeyboard
=
keyboardConfig
;
...
...
@@ -76,10 +87,11 @@ class CoolKeyboard {
_keyboardController
.
client
.
connectionId
,
_keyboardController
.
value
.
toJSON
()
]);
defaultBinaryMessenger
.
handlePlatformMessage
(
"flutter/textinput"
,
_codec
.
encodeMethodCall
(
callbackMethodCall
),
(
data
)
{});
ServicesBinding
.
instance
.
defaultBinaryMessenger
.
handlePlatformMessage
(
"flutter/textinput"
,
_codec
.
encodeMethodCall
(
callbackMethodCall
),
(
data
)
{});
});
if
(
_pageKey
!=
null
)
{
_pageKey
.
currentState
?.
update
();
...
...
@@ -92,7 +104,9 @@ class CoolKeyboard {
_codec
.
encodeMethodCall
(
MethodCall
(
'TextInput.hide'
)));
return
_codec
.
encodeSuccessEnvelope
(
null
);
}
else
{
hideKeyboard
(
animation:
false
);
if
(
clearTask
==
null
){
hideKeyboard
(
animation:
false
);
}
clearKeyboard
();
}
break
;
...
...
@@ -128,7 +142,7 @@ class CoolKeyboard {
static
openKeyboard
()
{
var
keyboardHeight
=
_currentKeyboard
.
getHeight
(
_context
);
_keyboardHeightNotifier
.
value
=
keyboardHeight
;
if
(
_keyboardEntry
!=
null
)
return
;
if
(
_keyboardEntry
!=
null
&&
_pageKey
!=
null
)
return
;
_pageKey
=
GlobalKey
<
KeyboardPageState
>();
// KeyboardMediaQueryState queryState = _context
// .ancestorStateOfType(const TypeMatcher<KeyboardMediaQueryState>())
...
...
@@ -141,7 +155,8 @@ class CoolKeyboard {
return
KeyboardPage
(
key:
tempKey
,
builder:
(
ctx
)
{
return
_currentKeyboard
?.
builder
(
ctx
,
_keyboardController
,
_keyboardParam
);
return
_currentKeyboard
?.
builder
(
ctx
,
_keyboardController
,
_keyboardParam
);
},
height:
_keyboardHeightNotifier
.
value
);
}
else
{
...
...
@@ -158,9 +173,14 @@ class CoolKeyboard {
}
static
hideKeyboard
({
bool
animation
=
true
})
{
if
(
clearTask
!=
null
)
{
if
(
clearTask
.
isActive
)
{
clearTask
.
cancel
();
}
clearTask
=
null
;
}
BackButtonInterceptor
.
removeByName
(
'CustomKeyboard'
);
if
(
_keyboardEntry
!=
null
&&
_pageKey
!=
null
)
{
_keyboardHeightNotifier
.
value
=
null
;
// _pageKey.currentState.animationController
// .addStatusListener((AnimationStatus status) {
// if (status == AnimationStatus.dismissed ||
...
...
@@ -186,6 +206,7 @@ class CoolKeyboard {
}
}
_pageKey
=
null
;
_keyboardHeightNotifier
.
value
=
null
;
try
{
// KeyboardMediaQueryState queryState = _context
// .ancestorStateOfType(const TypeMatcher<KeyboardMediaQueryState>())
...
...
@@ -210,7 +231,7 @@ class CoolKeyboard {
}
static
updateKeyboardHeight
()
{
if
(
_pageKey
!=
null
&&
_pageKey
.
currentState
!=
null
)
{
if
(
_pageKey
!=
null
&&
_pageKey
.
currentState
!=
null
&&
clearTask
==
null
)
{
_pageKey
.
currentState
.
updateHeight
(
_keyboardHeightNotifier
.
value
);
}
}
...
...
@@ -365,10 +386,10 @@ class KeyboardPageState extends State<KeyboardPage> {
void
initState
()
{
// TODO: implement initState
super
.
initState
();
WidgetsBinding
.
instance
.
addPostFrameCallback
((
_
){
WidgetsBinding
.
instance
.
addPostFrameCallback
((
_
)
{
_height
=
widget
.
height
;
setState
(()
=>
{});
setState
(()
=>
{});
});
}
...
...
@@ -414,15 +435,15 @@ class KeyboardPageState extends State<KeyboardPage> {
}
update
()
{
WidgetsBinding
.
instance
.
addPostFrameCallback
((
_
){
setState
(()
=>
{});
WidgetsBinding
.
instance
.
addPostFrameCallback
((
_
)
{
setState
(()
=>
{});
});
}
updateHeight
(
double
height
)
{
WidgetsBinding
.
instance
.
addPostFrameCallback
((
_
){
WidgetsBinding
.
instance
.
addPostFrameCallback
((
_
)
{
this
.
_height
=
height
??
0
;
setState
(()
=>
{});
setState
(()
=>
{});
});
}
}
pubspec.yaml
浏览文件 @
4e45045a
name
:
cool_ui
description
:
Some practical Widget for flutter,Popover,Weui,Custom Keyboard
version
:
0.5.
3
version
:
0.5.
4
author
:
Kevin <liangkaikevin@gmail.com>
homepage
:
https://github.com/Im-Kevin/cool_ui
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论