Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
59d4ac68
提交
59d4ac68
authored
11月 09, 2019
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复了有默认值时,键盘无法输入数据的问题
上级
b28fad3f
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
27 行增加
和
5 行删除
+27
-5
custom_keyboard.dart
example/lib/pages/custom_keyboard.dart
+4
-1
keyboard_controller.dart
lib/keyboards/keyboard_controller.dart
+16
-0
keyboard_manager.dart
lib/keyboards/keyboard_manager.dart
+7
-4
没有找到文件。
example/lib/pages/custom_keyboard.dart
浏览文件 @
59d4ac68
...
@@ -14,7 +14,8 @@ class CustomKeyboardDemo extends StatefulWidget{
...
@@ -14,7 +14,8 @@ class CustomKeyboardDemo extends StatefulWidget{
}
}
class
CustomKeyboardDemoState
extends
State
<
CustomKeyboardDemo
>{
class
CustomKeyboardDemoState
extends
State
<
CustomKeyboardDemo
>{
TextEditingController
textEditingController
=
TextEditingController
(
text:
'test'
);
TextEditingController
textEditing2Controller
=
TextEditingController
(
text:
'test'
);
@override
@override
Widget
build
(
BuildContext
context
)
{
Widget
build
(
BuildContext
context
)
{
...
@@ -29,12 +30,14 @@ class CustomKeyboardDemoState extends State<CustomKeyboardDemo>{
...
@@ -29,12 +30,14 @@ class CustomKeyboardDemoState extends State<CustomKeyboardDemo>{
body:
ListView
(
body:
ListView
(
children:
<
Widget
>[
children:
<
Widget
>[
TextField
(
TextField
(
controller:
textEditingController
,
keyboardType:
TextInputType
.
text
,
keyboardType:
TextInputType
.
text
,
),
),
Container
(
Container
(
height:
300.0
,
height:
300.0
,
),
),
TextField
(
TextField
(
controller:
textEditing2Controller
,
decoration:
InputDecoration
(
labelText:
'演示键盘弹出后滚动'
),
decoration:
InputDecoration
(
labelText:
'演示键盘弹出后滚动'
),
keyboardType:
NumberKeyboard
.
inputType
,
keyboardType:
NumberKeyboard
.
inputType
,
),
),
...
...
lib/keyboards/keyboard_controller.dart
浏览文件 @
59d4ac68
...
@@ -34,6 +34,22 @@ class KeyboardController extends ValueNotifier<TextEditingValue>{
...
@@ -34,6 +34,22 @@ class KeyboardController extends ValueNotifier<TextEditingValue>{
value
=
value
.
copyWith
(
selection:
newSelection
,
composing:
TextRange
.
empty
);
value
=
value
.
copyWith
(
selection:
newSelection
,
composing:
TextRange
.
empty
);
}
}
set
value
(
TextEditingValue
newValue
)
{
newValue
=
newValue
.
copyWith
(
// 修正由于默认值导致的Bug
composing:
TextRange
(
start:
newValue
.
composing
.
start
<
0
?
0
:
newValue
.
composing
.
start
,
end:
newValue
.
composing
.
end
<
0
?
0
:
newValue
.
composing
.
end
),
selection:
newValue
.
selection
.
copyWith
(
baseOffset:
newValue
.
selection
.
baseOffset
<
0
?
0
:
newValue
.
selection
.
baseOffset
,
extentOffset:
newValue
.
selection
.
extentOffset
<
0
?
0
:
newValue
.
selection
.
extentOffset
)
);
super
.
value
=
newValue
;
}
/// Set the [value] to empty.
/// Set the [value] to empty.
///
///
/// After calling this function, [text] will be the empty string and the
/// After calling this function, [text] will be the empty string and the
...
...
lib/keyboards/keyboard_manager.dart
浏览文件 @
59d4ac68
...
@@ -169,11 +169,14 @@ class CoolKeyboard {
...
@@ -169,11 +169,14 @@ class CoolKeyboard {
}
}
}
}
_pageKey
=
null
;
_pageKey
=
null
;
try
{
KeyboardMediaQueryState
queryState
=
_context
.
ancestorStateOfType
(
const
TypeMatcher
<
KeyboardMediaQueryState
>())
as
KeyboardMediaQueryState
;
queryState
.
update
();
}
catch
(
_
){
KeyboardMediaQueryState
queryState
=
_context
}
.
ancestorStateOfType
(
const
TypeMatcher
<
KeyboardMediaQueryState
>())
as
KeyboardMediaQueryState
;
queryState
.
update
();
}
}
static
clearKeyboard
()
{
static
clearKeyboard
()
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论