Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
45b10b5b
提交
45b10b5b
authored
11月 22, 2018
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
完善了键盘的文档
上级
e394b245
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
129 行增加
和
7 行删除
+129
-7
CHANGELOG.md
CHANGELOG.md
+4
-0
README.md
README.md
+4
-3
custom_keyboard.md
documents/custom_keyboard.md
+103
-0
weui_toast.dart
lib/dialogs/weui_toast.dart
+0
-1
keyboard_controller.dart
lib/keyboards/keyboard_controller.dart
+16
-1
pubspec.yaml
pubspec.yaml
+2
-2
没有找到文件。
CHANGELOG.md
浏览文件 @
45b10b5b
## [0.1.8] - TODO:完善了键盘的文档
*
完善了键盘的文档
*
完善了可发送的TextInputAction的类型
## [0.1.7] - TODO:添加了自定义键盘
*
TODO:添加了自定义键盘
*
TODO:修改了下文档结构
...
...
README.md
浏览文件 @
45b10b5b
...
...
@@ -7,7 +7,7 @@ Usage
Add this to your package's pubspec.yaml file:
```
yaml
dependencies
:
cool_ui
:
"
^0.1.
7
"
cool_ui
:
"
^0.1.
8
"
```
# 控件
...
...
@@ -22,4 +22,5 @@ dependencies:
# 自定义键盘
暂时未编写文档,具体请查看Demo与NumberKeyboard的实现
\ No newline at end of file
-
[
Get started
](
#自定义键盘使用方法快速入门
)
-
[
KeyboardController
](
#KeyboardController
)
\ No newline at end of file
documents/custom_keyboard.md
0 → 100644
浏览文件 @
45b10b5b
# 自定义键盘使用方法快速入门
## Step1
编写个性化的键盘
```
dart
class
NumberKeyboard
extends
StatelessWidget
{
static
const
CKTextInputType
inputType
=
const
CKTextInputType
(
name:
'CKNumberKeyboard'
);
//定义InputType类型
static
double
getHeight
(
BuildContext
ctx
){
//编写获取高度的方法
...
}
final
KeyboardController
controller
;
//用于控制键盘输出的Controller
const
NumberKeyboard
({
this
.
controller
});
static
register
(){
//注册键盘的方法
CoolKeyboard
.
addKeyboard
(
NumberKeyboard
.
inputType
,
KeyboardConfig
(
builder:
(
context
,
controller
){
return
NumberKeyboard
(
controller:
controller
);
},
getHeight:
NumberKeyboard
.
getHeight
));
}
@override
Widget
build
(
BuildContext
context
)
{
//键盘的具体内容
...
return
Container
(
//例子
color:
Colors
.
white
,
child:
GestureDetector
(
behavior:
HitTestBehavior
.
translucent
,
child:
Center
(
child:
Text
(
'1'
),),
onTap:
(){
controller
.
addText
(
'1'
);
往输入框光标位置添加一个
1
},
),
)
}
}
```
## Step2
注册键盘
```
dart
void
main
(
){
NumberKeyboard
.
register
();
//注册键盘
runApp
(
MyApp
());
}
```
## Step3
给需要使用自定义键盘的页面添加以下代码
```
dart
@override
Widget
build
(
BuildContext
context
)
{
return
KeyboardMediaQuery
(
//用于键盘弹出的时候页面可以滚动到输入框的位置
child:
Builder
(
builder:
(
ctx
)
{
CoolKeyboard
.
init
(
ctx
);
//初始化键盘监听并且传递当前页面的context
return
Page
;
//返回当前页面
})
);
}
```
## Step4
具体使用
```
dart
TextField
(
...
keyboardType:
NumberKeyboard
.
inputType
,
像平常一样设置键盘输入类型一样将
Step2
编写的
inputType
传递进去
...
)
```
# KeyboardController
-
[
deleteOne
](
#deleteOne
)
-
[
addText
](
#addText
)
-
[
doneAction
](
#doneAction
)
-
[
nextAction
](
#nextAction
)
-
[
sendPerformAction
](
#sendPerformAction
)
### deleteOne()
删除一个字符,一般用于键盘的删除键
### addText(String insertText)
在光标位置添加文字,一般用于键盘输入
### doneAction()
触发键盘的完成Action
### nextAction()
触发键盘的下一项Action
### newLineAction()
触发键盘的换行Action
### sendPerformAction(TextInputAction action)
///发送其他Action
lib/dialogs/weui_toast.dart
浏览文件 @
45b10b5b
...
...
@@ -159,7 +159,6 @@ VoidCallback showWeuiToast({
Alignment
alignment
=
const
Alignment
(
0.0
,-
0.2
),
RouteTransitionsBuilder
transitionBuilder
}){
Completer
<
VoidCallback
>
result
=
Completer
<
VoidCallback
>();
Navigator
.
of
(
context
,
rootNavigator:
true
).
push
(
WeuiToast
(
alignment:
alignment
,
...
...
lib/keyboards/keyboard_controller.dart
浏览文件 @
45b10b5b
...
...
@@ -60,7 +60,7 @@ class KeyboardController extends ValueNotifier<TextEditingValue>{
clearComposing
()
{
value
=
value
.
copyWith
(
composing:
TextRange
.
empty
);
}
///删除一个字符,一般用于键盘的删除键
deleteOne
(){
if
(
selection
.
baseOffset
==
0
)
return
;
...
...
@@ -101,4 +101,18 @@ class KeyboardController extends ValueNotifier<TextEditingValue>{
CoolKeyboard
.
sendPerformAction
(
TextInputAction
.
done
);
}
/// 下一个
nextAction
(){
CoolKeyboard
.
sendPerformAction
(
TextInputAction
.
next
);
}
/// 换行
newLineAction
(){
CoolKeyboard
.
sendPerformAction
(
TextInputAction
.
newline
);
}
///发送其他Action
sendPerformAction
(
TextInputAction
action
){
CoolKeyboard
.
sendPerformAction
(
action
);
}
}
\ No newline at end of file
pubspec.yaml
浏览文件 @
45b10b5b
name
:
cool_ui
description
:
用flutter实现一些我认为好看的UI控件,目前暂时只有Popover,Weui,不过有什么觉得好看的可以提Issue
version
:
0.1.
7
description
:
用flutter实现一些我认为好看的UI控件,目前暂时只有Popover,Weui
,Custom Keyboard
,不过有什么觉得好看的可以提Issue
version
:
0.1.
8
author
:
Kevin <liangkaikevin@gmail.com>
homepage
:
https://github.com/Im-Kevin/cool_ui
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论