Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
73c47aa1
提交
73c47aa1
authored
12月 16, 2019
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复页面高度未刷新问题
上级
e62fb57e
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
130 行增加
和
56 行删除
+130
-56
CHANGELOG.md
CHANGELOG.md
+4
-0
README.md
README.md
+1
-1
custom_keyboard.dart
example/lib/pages/custom_keyboard.dart
+93
-34
keyboard_media_query.dart
lib/keyboards/keyboard_media_query.dart
+13
-2
pubspec.lock
pubspec.lock
+18
-18
pubspec.yaml
pubspec.yaml
+1
-1
没有找到文件。
CHANGELOG.md
浏览文件 @
73c47aa1
## [0.3.2]
*
TODO: 修复页面高度未刷新问题
## [0.3.1]
*
TODO: 修复了键盘监听高度未释放的问题
...
...
README.md
浏览文件 @
73c47aa1
...
...
@@ -9,7 +9,7 @@ Usage Add this to your package's pubspec.yaml file:
Flutter >=1.7
```
yaml
dependencies
:
cool_ui
:
"
^0.3.
0
"
cool_ui
:
"
^0.3.
2
"
```
Flutter < 1.7
...
...
example/lib/pages/custom_keyboard.dart
浏览文件 @
73c47aa1
...
...
@@ -2,53 +2,113 @@ 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'
;
import
'package:flutter/services.dart'
;
class
CustomKeyboardDemo
extends
StatefulWidget
{
class
CustomKeyboardDemo
extends
StatefulWidget
{
@override
State
<
StatefulWidget
>
createState
()
{
// TODO: implement createState
return
CustomKeyboardDemoState
();
}
}
class
CustomKeyboardDemoState
extends
State
<
CustomKeyboardDemo
>{
TextEditingController
textEditingController
=
TextEditingController
(
text:
'test'
);
TextEditingController
textEditing2Controller
=
TextEditingController
(
text:
'test'
);
class
CustomKeyboardDemoState
extends
State
<
CustomKeyboardDemo
>
{
TextEditingController
textEditingController
=
TextEditingController
(
text:
'test'
);
TextEditingController
textEditing2Controller
=
TextEditingController
(
text:
'test'
);
@override
Widget
build
(
BuildContext
context
)
{
// TODO: implement build
return
KeyboardMediaQuery
(
child:
Builder
(
builder:
(
ctx
)
{
// CoolKeyboard.init(ctx);
return
Scaffold
(
appBar:
AppBar
(
title:
Text
(
"Custom Keyboard Demo"
),
return
KeyboardMediaQuery
(
child:
Builder
(
builder:
(
ctx
)
{
// CoolKeyboard.init(ctx);
return
Scaffold
(
appBar:
AppBar
(
title:
Text
(
"Custom Keyboard Demo"
),
),
body:
ListView
(
children:
<
Widget
>[
TextField
(
controller:
textEditingController
,
keyboardType:
TextInputType
.
text
,
),
body:
ListView
(
children:
<
Widget
>[
TextField
(
controller:
textEditingController
,
keyboardType:
TextInputType
.
text
,
),
Container
(
height:
300.0
,
),
TextField
(
controller:
textEditing2Controller
,
decoration:
InputDecoration
(
labelText:
'演示键盘弹出后滚动'
),
keyboardType:
NumberKeyboard
.
inputType
,
Container
(
height:
300.0
,
),
FlatButton
(
child:
Text
(
'弹出功能演示'
),
onPressed:
(){
showInputDialogs
(
context:
context
,
messageWidget:
Text
(
'弹出输入功能演示'
),
keyboardType:
NumberKeyboard
.
inputType
);
},
),
TextField
(
controller:
textEditing2Controller
,
decoration:
InputDecoration
(
labelText:
'演示键盘弹出后滚动'
),
keyboardType:
NumberKeyboard
.
inputType
,
),
TextField
(
decoration:
InputDecoration
(
labelText:
'多个键盘演示'
),
keyboardType:
TestKeyboard
.
inputType
,
)
],
));
}));
}
static
Future
<
String
>
showInputDialogs
(
{
@required
BuildContext
context
,
Widget
titleWidget
,
Widget
messageWidget
,
List
<
TextInputFormatter
>
inputFormatters
,
TextInputType
keyboardType
=
TextInputType
.
number
})
{
String
value
;
return
showCupertinoDialog
<
String
>(
context:
context
,
builder:
(
context
)
{
// The minimum insets for contents of the Scaffold to keep visible.
List
<
Widget
>
children
=
[];
if
(
messageWidget
!=
null
)
{
children
.
add
(
messageWidget
);
}
children
.
add
(
Form
(
child:
Container
(
padding:
EdgeInsets
.
only
(
top:
10
),
child:
Material
(
child:
TextField
(
inputFormatters:
inputFormatters
,
keyboardType:
keyboardType
,
autofocus:
true
,
onChanged:
(
newValue
)
{
value
=
newValue
;
},
)))));
return
AnimatedPadding
(
padding:
MediaQuery
.
of
(
context
).
viewInsets
+
const
EdgeInsets
.
symmetric
(
horizontal:
40.0
,
vertical:
24.0
),
duration:
const
Duration
(
milliseconds:
300
),
// curve: Curves.linear,
child:
CupertinoAlertDialog
(
title:
titleWidget
,
content:
Column
(
children:
children
,
),
actions:
<
Widget
>[
CupertinoDialogAction
(
child:
Text
(
"取消"
),
onPressed:
()
=>
Navigator
.
of
(
context
).
pop
(),
),
TextField
(
decoration:
InputDecoration
(
labelText:
'多个键盘演示'
),
keyboardType:
TestKeyboard
.
inputType
,
CupertinoDialogAction
(
child:
Text
(
"確認"
),
onPressed:
()
{
Navigator
.
of
(
context
).
pop
(
value
??
''
);
},
)
],
)
);
})
);
));
});
}
}
\ No newline at end of file
}
lib/keyboards/keyboard_media_query.dart
浏览文件 @
73c47aa1
...
...
@@ -13,11 +13,13 @@ class KeyboardMediaQuery extends StatefulWidget{
class
KeyboardMediaQueryState
extends
State
<
KeyboardMediaQuery
>{
double
keyboardHeight
;
ValueNotifier
<
double
>
keyboardHeightNotifier
;
@override
void
initState
(){
super
.
initState
();
CoolKeyboard
.
_keyboardHeightNotifier
.
addListener
(
onUpdateHeight
);
keyboardHeightNotifier
=
CoolKeyboard
.
_keyboardHeightNotifier
;
}
@override
...
...
@@ -28,17 +30,26 @@ class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{
if
(
data
==
null
){
data
=
MediaQueryData
.
fromWindow
(
WidgetsBinding
.
instance
.
window
);
}
var
bottom
=
CoolKeyboard
.
_keyboardHeightNotifier
.
value
??
data
.
viewInsets
.
bottom
;
// TODO: implement build
return
MediaQuery
(
child:
widget
.
child
,
data:
data
.
copyWith
(
viewInsets:
data
.
viewInsets
.
copyWith
(
bottom:
CoolKeyboard
.
_keyboardHeightNotifier
.
value
??
data
.
viewInsets
.
bottom
))
data:
data
.
copyWith
(
viewInsets:
data
.
viewInsets
.
copyWith
(
bottom:
bottom
)
)
);
}
onUpdateHeight
(){
try
{
setState
(()=>{});
}
catch
(
_
){}
}
catch
(
_
){
Future
.
delayed
(
Duration
(
milliseconds:
16
),
(){
this
.
onUpdateHeight
();
});
}
}
@override
...
...
pubspec.lock
浏览文件 @
73c47aa1
...
...
@@ -5,35 +5,35 @@ packages:
dependency: transitive
description:
name: async
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.3.0"
back_button_interceptor:
dependency: "direct main"
description:
name: back_button_interceptor
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "4.2.2"
boolean_selector:
dependency: transitive
description:
name: boolean_selector
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.0.5"
charcode:
dependency: transitive
description:
name: charcode
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.1.2"
collection:
dependency: transitive
description:
name: collection
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.14.11"
flutter:
...
...
@@ -50,35 +50,35 @@ packages:
dependency: transitive
description:
name: matcher
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.12.5"
meta:
dependency: transitive
description:
name: meta
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.1.7"
path:
dependency: transitive
description:
name: path
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.6.4"
pedantic:
dependency: transitive
description:
name: pedantic
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.8.0+1"
quiver:
dependency: transitive
description:
name: quiver
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.0.5"
sky_engine:
...
...
@@ -90,56 +90,56 @@ packages:
dependency: transitive
description:
name: source_span
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.5.5"
stack_trace:
dependency: transitive
description:
name: stack_trace
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.9.3"
stream_channel:
dependency: transitive
description:
name: stream_channel
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.0.0"
string_scanner:
dependency: transitive
description:
name: string_scanner
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.0.5"
term_glyph:
dependency: transitive
description:
name: term_glyph
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.1.0"
test_api:
dependency: transitive
description:
name: test_api
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.2.5"
typed_data:
dependency: transitive
description:
name: typed_data
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.1.6"
vector_math:
dependency: transitive
description:
name: vector_math
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.0.8"
sdks:
...
...
pubspec.yaml
浏览文件 @
73c47aa1
name
:
cool_ui
description
:
Some practical Widget for flutter,Popover,Weui,Custom Keyboard
version
:
0.3.
1
version
:
0.3.
2
author
:
Kevin <liangkaikevin@gmail.com>
homepage
:
https://github.com/Im-Kevin/cool_ui
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论