Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
9382a98d
提交
9382a98d
authored
12月 18, 2019
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
优化调用setState
上级
fad51ad6
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
15 行增加
和
19 行删除
+15
-19
CHANGELOG.md
CHANGELOG.md
+1
-1
README.md
README.md
+1
-1
keyboard_manager.dart
lib/keyboards/keyboard_manager.dart
+10
-10
keyboard_media_query.dart
lib/keyboards/keyboard_media_query.dart
+2
-6
pubspec.yaml
pubspec.yaml
+1
-1
没有找到文件。
CHANGELOG.md
浏览文件 @
9382a98d
## [0.4.
0
]
## [0.4.
1
]
*
TODO: 修复了键盘高度从小变大的时候无法改变的问题, issues: 36
*
TODO: 修复了键盘高度从小变大的时候无法改变的问题, issues: 36
*
TODO: 键盘添加了传参功能,可从外部传参到键盘内部
*
TODO: 键盘添加了传参功能,可从外部传参到键盘内部
...
...
README.md
浏览文件 @
9382a98d
...
@@ -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 >=1.7
Flutter >=1.7
```
yaml
```
yaml
dependencies
:
dependencies
:
cool_ui
:
"
^0.4.
0
"
cool_ui
:
"
^0.4.
1
"
```
```
Flutter < 1.7
Flutter < 1.7
...
...
lib/keyboards/keyboard_manager.dart
浏览文件 @
9382a98d
...
@@ -364,10 +364,10 @@ class KeyboardPageState extends State<KeyboardPage> {
...
@@ -364,10 +364,10 @@ class KeyboardPageState extends State<KeyboardPage> {
void
initState
()
{
void
initState
()
{
// TODO: implement initState
// TODO: implement initState
super
.
initState
();
super
.
initState
();
Future
.
delayed
(
Duration
(
milliseconds:
1
)).
then
((
_
)
{
setState
(()
{
WidgetsBinding
.
instance
.
addPostFrameCallback
((
_
)
{
_height
=
widget
.
height
;
_height
=
widget
.
height
;
});
setState
(()=>{
});
});
});
}
}
...
@@ -413,15 +413,15 @@ class KeyboardPageState extends State<KeyboardPage> {
...
@@ -413,15 +413,15 @@ class KeyboardPageState extends State<KeyboardPage> {
}
}
update
()
{
update
()
{
try
{
WidgetsBinding
.
instance
.
addPostFrameCallback
((
_
)
{
setState
(()
=>
{});
setState
(()
=>
{});
}
catch
(
_
)
{}
}
);
}
}
updateHeight
(
double
height
)
{
updateHeight
(
double
height
)
{
try
{
WidgetsBinding
.
instance
.
addPostFrameCallback
((
_
)
{
this
.
_height
=
height
??
0
;
this
.
_height
=
height
??
0
;
setState
(()
=>
{});
setState
(()
=>
{});
}
catch
(
_
)
{}
}
);
}
}
}
}
lib/keyboards/keyboard_media_query.dart
浏览文件 @
9382a98d
...
@@ -43,13 +43,9 @@ class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{
...
@@ -43,13 +43,9 @@ class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{
}
}
onUpdateHeight
(){
onUpdateHeight
(){
try
{
WidgetsBinding
.
instance
.
addPostFrameCallback
((
_
)
{
setState
(()=>{});
setState
(()=>{});
}
catch
(
_
){
});
Future
.
delayed
(
Duration
(
milliseconds:
16
),
(){
this
.
onUpdateHeight
();
});
}
}
}
@override
@override
...
...
pubspec.yaml
浏览文件 @
9382a98d
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
:
0.4.
0
version
:
0.4.
1
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
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论