Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
b28fad3f
提交
b28fad3f
authored
8月 04, 2019
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复了多个自定义键盘无法切换的问题
上级
bbc3d000
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
104 行增加
和
3 行删除
+104
-3
CHANGELOG.md
CHANGELOG.md
+3
-0
README.md
README.md
+1
-1
test_keyboard.dart
example/lib/keyboards/test_keyboard.dart
+90
-0
main.dart
example/lib/main.dart
+3
-0
custom_keyboard.dart
example/lib/pages/custom_keyboard.dart
+6
-1
keyboard_manager.dart
lib/keyboards/keyboard_manager.dart
+0
-0
pubspec.yaml
pubspec.yaml
+1
-1
没有找到文件。
CHANGELOG.md
浏览文件 @
b28fad3f
## [0.2.1]
*
TODO: 修复了多个自定义键盘无法切换的问题
## [0.2.0]
*
TODO: 优化了WeuiToast的效果,添加了WeuiToastConfig,可以全局配置默认设置
*
TODO: 添加了Keyboard对android 返回按钮的监听
...
...
README.md
浏览文件 @
b28fad3f
...
...
@@ -9,7 +9,7 @@ Usage Add this to your package's pubspec.yaml file:
Flutter >=1.7
```
yaml
dependencies
:
cool_ui
:
"
^0.2.
0
"
cool_ui
:
"
^0.2.
1
"
```
Flutter < 1.7
...
...
example/lib/keyboards/test_keyboard.dart
0 → 100644
浏览文件 @
b28fad3f
import
'package:cool_ui/cool_ui.dart'
;
import
'package:flutter/material.dart'
;
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
;
}
final
KeyboardController
controller
;
const
TestKeyboard
({
this
.
controller
});
static
register
(){
CoolKeyboard
.
addKeyboard
(
TestKeyboard
.
inputType
,
KeyboardConfig
(
builder:
(
context
,
controller
){
return
TestKeyboard
(
controller:
controller
);
},
getHeight:
TestKeyboard
.
getHeight
));
}
@override
Widget
build
(
BuildContext
context
)
{
MediaQueryData
mediaQuery
=
MediaQuery
.
of
(
context
);
return
Material
(
child:
DefaultTextStyle
(
style:
TextStyle
(
fontWeight:
FontWeight
.
w500
,
color:
Colors
.
black
,
fontSize:
23.0
),
child:
Container
(
height:
getHeight
(
context
),
width:
mediaQuery
.
size
.
width
,
decoration:
BoxDecoration
(
color:
Color
(
0xffafafaf
),
),
child:
GridView
.
count
(
childAspectRatio:
2
/
1
,
mainAxisSpacing:
0.5
,
crossAxisSpacing:
0.5
,
padding:
EdgeInsets
.
all
(
0.0
),
crossAxisCount:
3
,
children:
<
Widget
>[
buildButton
(
'A'
),
buildButton
(
'B'
),
buildButton
(
'C'
),
buildButton
(
'D'
),
buildButton
(
'E'
),
buildButton
(
'F'
),
buildButton
(
'G'
),
buildButton
(
'H'
),
buildButton
(
'J'
),
Container
(
color:
Color
(
0xFFd3d6dd
),
child:
GestureDetector
(
behavior:
HitTestBehavior
.
translucent
,
child:
Center
(
child:
Icon
(
Icons
.
expand_more
),),
onTap:
(){
controller
.
doneAction
();
},
),
),
buildButton
(
'0'
),
Container
(
color:
Color
(
0xFFd3d6dd
),
child:
GestureDetector
(
behavior:
HitTestBehavior
.
translucent
,
child:
Center
(
child:
Text
(
'X'
),),
onTap:
(){
controller
.
deleteOne
();
},
),
),
]),
)),
);
}
Widget
buildButton
(
String
title
,{
String
value
}){
if
(
value
==
null
){
value
=
title
;
}
return
Container
(
color:
Colors
.
white
,
child:
GestureDetector
(
behavior:
HitTestBehavior
.
translucent
,
child:
Center
(
child:
Text
(
title
),),
onTap:
(){
controller
.
addText
(
value
);
},
),
);
}
}
example/lib/main.dart
浏览文件 @
b28fad3f
...
...
@@ -6,8 +6,11 @@ import 'package:cool_ui_example/pages/weui_toast_demo.dart';
import
'package:cool_ui/cool_ui.dart'
;
import
'package:flutter/material.dart'
;
import
'keyboards/test_keyboard.dart'
;
void
main
(
){
NumberKeyboard
.
register
();
TestKeyboard
.
register
();
runApp
(
MyApp
());
}
...
...
example/lib/pages/custom_keyboard.dart
浏览文件 @
b28fad3f
import
'package:cool_ui_example/keyboards/test_keyboard.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/cupertino.dart'
;
import
'package:cool_ui/cool_ui.dart'
;
...
...
@@ -28,7 +29,7 @@ class CustomKeyboardDemoState extends State<CustomKeyboardDemo>{
body:
ListView
(
children:
<
Widget
>[
TextField
(
keyboardType:
NumberKeyboard
.
inputType
,
keyboardType:
TextInputType
.
text
,
),
Container
(
height:
300.0
,
...
...
@@ -36,6 +37,10 @@ class CustomKeyboardDemoState extends State<CustomKeyboardDemo>{
TextField
(
decoration:
InputDecoration
(
labelText:
'演示键盘弹出后滚动'
),
keyboardType:
NumberKeyboard
.
inputType
,
),
TextField
(
decoration:
InputDecoration
(
labelText:
'多个键盘演示'
),
keyboardType:
TestKeyboard
.
inputType
,
)
],
)
...
...
lib/keyboards/keyboard_manager.dart
浏览文件 @
b28fad3f
差异被折叠。
点击展开。
pubspec.yaml
浏览文件 @
b28fad3f
name
:
cool_ui
description
:
Some practical Widget for flutter,Popover,Weui,Custom Keyboard
version
:
0.2.
0
version
:
0.2.
1
author
:
Kevin <liangkaikevin@gmail.com>
homepage
:
https://github.com/Im-Kevin/cool_ui
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论