Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
9cb76004
提交
9cb76004
authored
4月 01, 2019
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复了自定义键盘切换回原生键盘无法输入的问题,发布0.1.14
上级
7efcef5b
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
18 行增加
和
6 行删除
+18
-6
CHANGELOG.md
CHANGELOG.md
+4
-0
README.md
README.md
+1
-1
popover.md
documents/popover.md
+1
-0
keyboard_manager.dart
lib/keyboards/keyboard_manager.dart
+7
-3
keyboard_media_query.dart
lib/keyboards/keyboard_media_query.dart
+1
-0
cupertino_popover.dart
lib/widgets/popover/cupertino_popover.dart
+3
-1
pubspec.yaml
pubspec.yaml
+1
-1
没有找到文件。
CHANGELOG.md
浏览文件 @
9cb76004
## [0.1.14] - TODO:修复了自定义键盘切换回原生键盘无法输入的问题
*
修复了自定义键盘切换回原生键盘无法输入的问题
*
Popover可以设置遮罩层颜色
## [0.1.13] - TODO:修复hide后pop无效的问题
## [0.1.8] - TODO:完善了键盘的文档
...
...
README.md
浏览文件 @
9cb76004
...
...
@@ -7,7 +7,7 @@ Usage
Add this to your package's pubspec.yaml file:
```
yaml
dependencies
:
cool_ui
:
"
^0.1.1
2
"
cool_ui
:
"
^0.1.1
4
"
```
# 控件
...
...
documents/popover.md
浏览文件 @
9cb76004
...
...
@@ -26,6 +26,7 @@ CupertinoPopoverButton({
|
[
popoverConstraints
]
|
<code>
BoxConstraints
</code>
| maxHeight:123.0 maxWidth:150.0 | 弹出框的最大最小高宽|
|
[
onTap
]
|
<code>
BoolCallback
</code>
| | 按钮点击事件,返回true取消默认反应(不打开Popover) |
|
[
popoverColor
]
|
<code>
Color
</code>
| 白色 | 弹出框的背景颜色 |
|
[
barrierColor
]
|
<code>
Color
</code>
| Colors.black54 | 遮罩层的颜色,目前不允许设置透明,如需要透明则使用Color.fromRGBO(0, 0, 0, 0.01)可达到类似效果|
|
[
transitionDuration
]
|
<code>
Duration
</code>
| 0.2s | 过度动画时间 |
|
[
radius
]
|
<code>
double
</code>
| 8.0 | 弹出框的圆角弧度 |
...
...
lib/keyboards/keyboard_manager.dart
浏览文件 @
9cb76004
...
...
@@ -66,8 +66,12 @@ class CoolKeyboard {
clearKeyboard
();
_currentKeyboard
=
keyboardConfig
;
_keyboardController
=
KeyboardController
(
client:
client
)..
addListener
((){
var
callbackMethodCall
=
MethodCall
(
"TextInputClient.updateEditingState"
,[
_keyboardController
.
client
.
connectionId
,
_keyboardController
.
value
.
toJSON
()]);
BinaryMessages
.
handlePlatformMessage
(
"flutter/textinput"
,
_codec
.
encodeMethodCall
(
callbackMethodCall
),
(
data
){});
var
callbackMethodCall
=
MethodCall
(
"TextInputClient.updateEditingState"
,[
_keyboardController
.
client
.
connectionId
,
_keyboardController
.
value
.
toJSON
()]);
BinaryMessages
.
handlePlatformMessage
(
"flutter/textinput"
,
_codec
.
encodeMethodCall
(
callbackMethodCall
),
(
data
){
});
});
}
});
...
...
@@ -134,7 +138,7 @@ class CoolKeyboard {
}
static
hideKeyboard
({
bool
animation
=
true
}){
if
(
_keyboardEntry
!=
null
)
{
if
(
_keyboardEntry
!=
null
&&
_pageKey
!=
null
)
{
_keyboardHeight
=
null
;
_pageKey
.
currentState
.
animationController
.
addStatusListener
((
status
)
{
if
(
status
==
AnimationStatus
.
dismissed
||
...
...
lib/keyboards/keyboard_media_query.dart
浏览文件 @
9cb76004
...
...
@@ -14,6 +14,7 @@ class KeyboardMediaQuery extends StatefulWidget{
class
KeyboardMediaQueryState
extends
State
<
KeyboardMediaQuery
>{
@override
Widget
build
(
BuildContext
context
)
{
// TODO: implement build
var
data
=
MediaQuery
.
of
(
context
);
print
(
'KeyboardMediaQuery
${CoolKeyboard.keyboardHeight}
'
);
...
...
lib/widgets/popover/cupertino_popover.dart
浏览文件 @
9cb76004
...
...
@@ -11,6 +11,7 @@ class CupertinoPopoverButton extends StatelessWidget{
final
Duration
transitionDuration
;
final
BoolCallback
onTap
;
final
BoxConstraints
popoverConstraints
;
final
Color
barrierColor
;
CupertinoPopoverButton
({
@required
this
.
child
,
...
...
@@ -21,6 +22,7 @@ class CupertinoPopoverButton extends StatelessWidget{
BoxConstraints
popoverConstraints
,
this
.
onTap
,
this
.
transitionDuration
=
const
Duration
(
milliseconds:
200
),
this
.
barrierColor
=
Colors
.
black54
,
this
.
radius
=
8.0
}):
assert
(
popoverBuild
!=
null
),
this
.
popoverConstraints
=
...
...
@@ -54,7 +56,7 @@ class CupertinoPopoverButton extends StatelessWidget{
},
barrierDismissible:
true
,
barrierLabel:
MaterialLocalizations
.
of
(
context
).
modalBarrierDismissLabel
,
barrierColor:
Colors
.
black54
,
barrierColor:
this
.
barrierColor
,
transitionDuration:
transitionDuration
,
transitionBuilder:
(
BuildContext
context
,
Animation
<
double
>
animation
,
Animation
<
double
>
secondaryAnimation
,
Widget
child
)
{
if
(
body
==
null
){
...
...
pubspec.yaml
浏览文件 @
9cb76004
name
:
cool_ui
description
:
Some practical Widget for flutter,Popover,Weui,Custom Keyboard
version
:
0.1.1
3
version
:
0.1.1
4
author
:
Kevin <liangkaikevin@gmail.com>
homepage
:
https://github.com/Im-Kevin/cool_ui
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论