Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
59f80b09
提交
59f80b09
authored
4月 28, 2021
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复收起虚拟键盘报错
修复因空安全导致的报错
上级
2acdf3d1
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
37 行增加
和
24 行删除
+37
-24
CHANGELOG.md
CHANGELOG.md
+4
-0
README.md
README.md
+1
-1
keyboard_manager.dart
lib/keyboards/keyboard_manager.dart
+31
-22
pubspec.yaml
pubspec.yaml
+1
-1
没有找到文件。
CHANGELOG.md
浏览文件 @
59f80b09
## [1.0.2]
*
TODO: 修复收起虚拟键盘报错
*
TODO: 修复因空安全导致的报错
## [1.0.1]
## [1.0.1]
*
TODO: 修复警告错误
*
TODO: 修复警告错误
...
...
README.md
浏览文件 @
59f80b09
...
@@ -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 >=2.0
Flutter >=2.0
```
yaml
```
yaml
dependencies
:
dependencies
:
cool_ui
:
"
^1.0.
1
"
cool_ui
:
"
^1.0.
2
"
```
```
Flutter >=1.17
Flutter >=1.17
...
...
lib/keyboards/keyboard_manager.dart
浏览文件 @
59f80b09
...
@@ -31,7 +31,10 @@ class CoolKeyboard {
...
@@ -31,7 +31,10 @@ class CoolKeyboard {
if
(
isInterceptor
)
return
;
if
(
isInterceptor
)
return
;
isInterceptor
=
true
;
isInterceptor
=
true
;
ServicesBinding
.
instance
!.
defaultBinaryMessenger
ServicesBinding
.
instance
!.
defaultBinaryMessenger
.
setMockMessageHandler
(
"flutter/textinput"
,
(
ByteData
?
data
)
async
{
.
setMockMessageHandler
(
"flutter/textinput"
,
_textInputHanlde
);
}
static
Future
<
ByteData
?>
_textInputHanlde
(
ByteData
?
data
)
async
{
var
methodCall
=
_codec
.
decodeMethodCall
(
data
);
var
methodCall
=
_codec
.
decodeMethodCall
(
data
);
switch
(
methodCall
.
method
)
{
switch
(
methodCall
.
method
)
{
case
'TextInput.show'
:
case
'TextInput.show'
:
...
@@ -69,11 +72,15 @@ class CoolKeyboard {
...
@@ -69,11 +72,15 @@ class CoolKeyboard {
}
}
break
;
break
;
case
'TextInput.clearClient'
:
case
'TextInput.clearClient'
:
var
isShow
=
_currentKeyboard
!=
null
;
if
(
clearTask
==
null
)
{
if
(
clearTask
==
null
)
{
clearTask
=
new
Timer
(
Duration
(
milliseconds:
16
),
clearTask
=
new
Timer
(
()
=>
hideKeyboard
(
animation:
true
));
Duration
(
milliseconds:
16
),
()
=>
hideKeyboard
(
animation:
true
));
}
}
clearKeyboard
();
clearKeyboard
();
if
(
isShow
)
{
return
_codec
.
encodeSuccessEnvelope
(
null
);
}
break
;
break
;
case
'TextInput.setClient'
:
case
'TextInput.setClient'
:
var
setInputType
=
methodCall
.
arguments
[
1
][
'inputType'
];
var
setInputType
=
methodCall
.
arguments
[
1
][
'inputType'
];
...
@@ -95,10 +102,8 @@ class CoolKeyboard {
...
@@ -95,10 +102,8 @@ class CoolKeyboard {
_keyboardController
!.
value
.
toJSON
()
_keyboardController
!.
value
.
toJSON
()
]);
]);
ServicesBinding
.
instance
!.
defaultBinaryMessenger
ServicesBinding
.
instance
!.
defaultBinaryMessenger
.
handlePlatformMessage
(
.
handlePlatformMessage
(
"flutter/textinput"
,
"flutter/textinput"
,
_codec
.
encodeMethodCall
(
callbackMethodCall
),
(
data
)
{});
_codec
.
encodeMethodCall
(
callbackMethodCall
),
(
data
)
{});
});
});
if
(
_pageKey
!=
null
)
{
if
(
_pageKey
!=
null
)
{
_pageKey
!.
currentState
?.
update
();
_pageKey
!.
currentState
?.
update
();
...
@@ -116,19 +121,19 @@ class CoolKeyboard {
...
@@ -116,19 +121,19 @@ class CoolKeyboard {
}
}
clearKeyboard
();
clearKeyboard
();
}
}
break
;
//
break;
}
}
if
(
data
!=
null
)
{
if
(
data
!=
null
)
{
ByteData
response
=
await
_sendPlatformMessage
(
"flutter/textinput"
,
data
);
ByteData
?
response
=
await
_sendPlatformMessage
(
"flutter/textinput"
,
data
);
return
response
;
return
response
;
}
}
return
null
;
return
null
;
});
}
}
static
Future
<
ByteData
>
_sendPlatformMessage
(
static
Future
<
ByteData
?
>
_sendPlatformMessage
(
String
channel
,
ByteData
message
)
{
String
channel
,
ByteData
message
)
{
final
Completer
<
ByteData
>
completer
=
Completer
<
ByteData
>();
final
Completer
<
ByteData
?>
completer
=
Completer
<
ByteData
?
>();
ui
.
window
.
sendPlatformMessage
(
channel
,
message
,
(
ByteData
?
reply
)
{
ui
.
window
.
sendPlatformMessage
(
channel
,
message
,
(
ByteData
?
reply
)
{
try
{
try
{
completer
.
complete
(
reply
);
completer
.
complete
(
reply
);
...
@@ -161,12 +166,12 @@ class CoolKeyboard {
...
@@ -161,12 +166,12 @@ class CoolKeyboard {
var
tempKey
=
_pageKey
;
var
tempKey
=
_pageKey
;
_root
!.
setKeyboard
((
ctx
)
{
_root
!.
setKeyboard
((
ctx
)
{
if
(
_currentKeyboard
!=
null
&&
_keyboardHeightNotifier
.
value
!=
null
)
{
if
(
_currentKeyboard
!=
null
&&
_keyboardHeightNotifier
.
value
!=
0
)
{
return
KeyboardPage
(
return
KeyboardPage
(
key:
tempKey
,
key:
tempKey
,
builder:
(
ctx
)
{
builder:
(
ctx
)
{
return
_currentKeyboard
!
.
builder
(
return
_currentKeyboard
!
ctx
,
_keyboardController
!,
_keyboardParam
);
.
builder
(
ctx
,
_keyboardController
!,
_keyboardParam
);
},
},
height:
_keyboardHeightNotifier
.
value
);
height:
_keyboardHeightNotifier
.
value
);
}
else
{
}
else
{
...
@@ -174,7 +179,7 @@ class CoolKeyboard {
...
@@ -174,7 +179,7 @@ class CoolKeyboard {
}
}
});
});
BackButtonInterceptor
.
add
((
_
,
_
2
)
{
BackButtonInterceptor
.
add
((
_
,
_
_
)
{
CoolKeyboard
.
sendPerformAction
(
TextInputAction
.
done
);
CoolKeyboard
.
sendPerformAction
(
TextInputAction
.
done
);
return
true
;
return
true
;
},
zIndex:
1
,
name:
'CustomKeyboard'
);
},
zIndex:
1
,
name:
'CustomKeyboard'
);
...
@@ -229,8 +234,10 @@ class CoolKeyboard {
...
@@ -229,8 +234,10 @@ class CoolKeyboard {
static
sendPerformAction
(
TextInputAction
action
)
{
static
sendPerformAction
(
TextInputAction
action
)
{
var
callbackMethodCall
=
MethodCall
(
"TextInputClient.performAction"
,
var
callbackMethodCall
=
MethodCall
(
"TextInputClient.performAction"
,
[
_keyboardController
!.
client
.
connectionId
,
action
.
toString
()]);
[
_keyboardController
!.
client
.
connectionId
,
action
.
toString
()]);
ServicesBinding
.
instance
!.
defaultBinaryMessenger
.
handlePlatformMessage
(
"flutter/textinput"
,
ServicesBinding
.
instance
!.
defaultBinaryMessenger
.
handlePlatformMessage
(
_codec
.
encodeMethodCall
(
callbackMethodCall
),
(
data
)
{});
"flutter/textinput"
,
_codec
.
encodeMethodCall
(
callbackMethodCall
),
(
data
)
{});
}
}
static
updateKeyboardHeight
()
{
static
updateKeyboardHeight
()
{
...
@@ -245,13 +252,13 @@ class CoolKeyboard {
...
@@ -245,13 +252,13 @@ class CoolKeyboard {
class
KeyboardConfig
{
class
KeyboardConfig
{
final
KeyboardBuilder
builder
;
final
KeyboardBuilder
builder
;
final
GetKeyboardHeight
getHeight
;
final
GetKeyboardHeight
getHeight
;
const
KeyboardConfig
({
required
this
.
builder
,
required
this
.
getHeight
});
const
KeyboardConfig
({
required
this
.
builder
,
required
this
.
getHeight
});
}
}
class
InputClient
{
class
InputClient
{
final
int
connectionId
;
final
int
connectionId
;
final
TextInputConfiguration
configuration
;
final
TextInputConfiguration
configuration
;
const
InputClient
({
required
this
.
connectionId
,
required
this
.
configuration
});
const
InputClient
({
required
this
.
connectionId
,
required
this
.
configuration
});
factory
InputClient
.
fromJSON
(
List
<
dynamic
>
encoded
)
{
factory
InputClient
.
fromJSON
(
List
<
dynamic
>
encoded
)
{
return
InputClient
(
return
InputClient
(
...
@@ -331,7 +338,8 @@ class CKTextInputType extends TextInputType {
...
@@ -331,7 +338,8 @@ class CKTextInputType extends TextInputType {
final
String
name
;
final
String
name
;
final
String
?
params
;
final
String
?
params
;
const
CKTextInputType
({
required
this
.
name
,
bool
?
signed
,
bool
?
decimal
,
this
.
params
})
const
CKTextInputType
(
{
required
this
.
name
,
bool
?
signed
,
bool
?
decimal
,
this
.
params
})
:
super
.
numberWithOptions
(
signed:
signed
,
decimal:
decimal
);
:
super
.
numberWithOptions
(
signed:
signed
,
decimal:
decimal
);
@override
@override
...
@@ -376,7 +384,8 @@ class CKTextInputType extends TextInputType {
...
@@ -376,7 +384,8 @@ class CKTextInputType extends TextInputType {
class
KeyboardPage
extends
StatefulWidget
{
class
KeyboardPage
extends
StatefulWidget
{
final
WidgetBuilder
builder
;
final
WidgetBuilder
builder
;
final
double
height
;
final
double
height
;
const
KeyboardPage
({
required
this
.
builder
,
this
.
height
=
0
,
Key
?
key
})
:
super
(
key:
key
);
const
KeyboardPage
({
required
this
.
builder
,
this
.
height
=
0
,
Key
?
key
})
:
super
(
key:
key
);
@override
@override
State
<
StatefulWidget
>
createState
()
=>
KeyboardPageState
();
State
<
StatefulWidget
>
createState
()
=>
KeyboardPageState
();
...
...
pubspec.yaml
浏览文件 @
59f80b09
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
:
1.0.
1
version
:
1.0.
2
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
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论