Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
5766382a
提交
5766382a
authored
12月 02, 2019
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
升级版本0.3.0
上级
a09b2e3f
隐藏空白字符变更
内嵌
并排
正在显示
12 个修改的文件
包含
159 行增加
和
78 行删除
+159
-78
CHANGELOG.md
CHANGELOG.md
+3
-0
README.md
README.md
+1
-1
custom_keyboard.md
documents/custom_keyboard.md
+4
-7
flutter_export_environment.sh
example/ios/Flutter/flutter_export_environment.sh
+10
-0
main.dart
example/lib/main.dart
+31
-32
custom_keyboard.dart
example/lib/pages/custom_keyboard.dart
+1
-1
cool_ui.dart
lib/cool_ui.dart
+3
-2
keyboard_manager.dart
lib/keyboards/keyboard_manager.dart
+39
-24
keyboard_media_query.dart
lib/keyboards/keyboard_media_query.dart
+15
-3
keyboard_root.dart
lib/keyboards/keyboard_root.dart
+44
-0
pubspec.lock
pubspec.lock
+7
-7
pubspec.yaml
pubspec.yaml
+1
-1
没有找到文件。
CHANGELOG.md
浏览文件 @
5766382a
## [0.3.0]
*
TODO: 优化了键盘的使用方式
## [0.2.2]
*
TODO: 修复了有默认值时,键盘无法输入数据的问题
...
...
README.md
浏览文件 @
5766382a
...
...
@@ -9,7 +9,7 @@ Usage Add this to your package's pubspec.yaml file:
Flutter >=1.7
```
yaml
dependencies
:
cool_ui
:
"
^0.
2.1
"
cool_ui
:
"
^0.
3.0
"
```
Flutter < 1.7
...
...
documents/custom_keyboard.md
浏览文件 @
5766382a
...
...
@@ -42,12 +42,12 @@ class NumberKeyboard extends StatelessWidget{
```
## Step2
注册键盘
注册键盘
,并且添加了KeyboardRootWidget
```
dart
void
main
(
){
NumberKeyboard
.
register
();
//注册键盘
runApp
(
MyApp
());
runApp
(
KeyboardRootWidget
(
child:
MyApp
()));
//添加了KeyboardRootWidget
}
```
...
...
@@ -58,10 +58,7 @@ void main(){
@override
Widget
build
(
BuildContext
context
)
{
return
KeyboardMediaQuery
(
//用于键盘弹出的时候页面可以滚动到输入框的位置
child:
Builder
(
builder:
(
ctx
)
{
CoolKeyboard
.
init
(
ctx
);
//初始化键盘监听并且传递当前页面的context
return
Page
;
//返回当前页面
})
child:
Page
);
}
```
...
...
@@ -72,7 +69,7 @@ Widget build(BuildContext context) {
```
dart
TextField
(
...
keyboardType:
NumberKeyboard
.
inputType
,
像平常一样设置键盘输入类型一样将
Step
2
编写的
inputType
传递进去
keyboardType:
NumberKeyboard
.
inputType
,
像平常一样设置键盘输入类型一样将
Step
1
编写的
inputType
传递进去
...
)
```
...
...
example/ios/Flutter/flutter_export_environment.sh
0 → 100644
浏览文件 @
5766382a
#!/bin/sh
# This is a generated file; do not edit or check into version control.
export
"FLUTTER_ROOT=G:
\f
lutter"
export
"FLUTTER_APPLICATION_PATH=G:
\T
estCode
\c
ool_ui
\c
ool_ui
\e
xample"
export
"FLUTTER_TARGET=lib
\m
ain.dart"
export
"FLUTTER_BUILD_DIR=build"
export
"SYMROOT=
${
SOURCE_ROOT
}
/../build
\i
os"
export
"FLUTTER_FRAMEWORK_DIR=G:
\f
lutter
\b
in
\c
ache
\a
rtifacts
\e
ngine
\i
os"
export
"FLUTTER_BUILD_NAME=1.0.0"
export
"FLUTTER_BUILD_NUMBER=1"
example/lib/main.dart
浏览文件 @
5766382a
...
...
@@ -8,36 +8,32 @@ import 'package:flutter/material.dart';
import
'keyboards/test_keyboard.dart'
;
void
main
(
){
void
main
(
)
{
NumberKeyboard
.
register
();
TestKeyboard
.
register
();
runApp
(
MyApp
());
runApp
(
KeyboardRootWidget
(
child:
MyApp
()));
// runApp(MyApp());
}
class
MyApp
extends
StatelessWidget
{
// This widget is the root of your application.
@override
Widget
build
(
BuildContext
context
)
{
return
WeuiToastConfig
(
data:
WeuiToastConfigData
(
successText:
'测试ConfigData'
),
child:
MaterialApp
(
title:
'Flutter Demo'
,
theme:
ThemeData
(
// This is the theme of your application.
//
// Try running your application with "flutter run". You'll see the
// application has a blue toolbar. Then, without quitting the app, try
// changing the primarySwatch below to Colors.green and then invoke
// "hot reload" (press "r" in the console where you ran "flutter run",
// or press Run > Flutter Hot Reload in IntelliJ). Notice that the
// counter didn't reset back to zero; the application is not restarted.
primarySwatch:
Colors
.
blue
),
home:
MyHomePage
(
title:
'Flutter Demo Home Page'
)
));
data:
WeuiToastConfigData
(
successText:
'测试ConfigData'
),
child:
MaterialApp
(
title:
'Flutter Demo'
,
theme:
ThemeData
(
// This is the theme of your application.
//
// Try running your application with "flutter run". You'll see the
// application has a blue toolbar. Then, without quitting the app, try
// changing the primarySwatch below to Colors.green and then invoke
// "hot reload" (press "r" in the console where you ran "flutter run",
// or press Run > Flutter Hot Reload in IntelliJ). Notice that the
// counter didn't reset back to zero; the application is not restarted.
primarySwatch:
Colors
.
blue
),
home:
MyHomePage
(
title:
'Flutter Demo Home Page'
)));
}
}
...
...
@@ -81,7 +77,7 @@ class _MyHomePageState extends State<MyHomePage> {
// The Flutter framework has been optimized to make rerunning build methods
// fast, so that you can just rebuild anything that needs updating rather
// than having to individually change instances of widgets.
return
Scaffold
(
return
Scaffold
(
appBar:
AppBar
(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
...
...
@@ -92,30 +88,33 @@ class _MyHomePageState extends State<MyHomePage> {
ListTile
(
leading:
Icon
(
CoolUIExampleIcon
.
popover
),
title:
Text
(
"Popover"
),
onTap:
(){
Navigator
.
of
(
context
).
push
(
MaterialPageRoute
(
builder:
(
context
)=>
PopoverDemo
()));
onTap:
()
{
Navigator
.
of
(
context
).
push
(
MaterialPageRoute
(
builder:
(
context
)
=>
PopoverDemo
()));
},
),
ListTile
(
title:
Text
(
"PaintEvent"
),
onTap:
(){
Navigator
.
of
(
context
).
push
(
MaterialPageRoute
(
builder:
(
context
)=>
PaintEventDemo
()));
onTap:
()
{
Navigator
.
of
(
context
).
push
(
MaterialPageRoute
(
builder:
(
context
)
=>
PaintEventDemo
()));
},
),
ListTile
(
title:
Text
(
"WeuiToastEvent"
),
onTap:
(){
Navigator
.
of
(
context
).
push
(
MaterialPageRoute
(
builder:
(
context
)=>
WeuiToastDemo
()));
onTap:
()
{
Navigator
.
of
(
context
).
push
(
MaterialPageRoute
(
builder:
(
context
)
=>
WeuiToastDemo
()));
},
),
ListTile
(
title:
Text
(
"CustomKeyboardEvent"
),
onTap:
(){
Navigator
.
of
(
context
).
push
(
MaterialPageRoute
(
builder:
(
context
)=>
CustomKeyboardDemo
()));
onTap:
()
{
Navigator
.
of
(
context
).
push
(
MaterialPageRoute
(
builder:
(
context
)
=>
CustomKeyboardDemo
()));
},
)
],
)
);
));
}
}
example/lib/pages/custom_keyboard.dart
浏览文件 @
5766382a
...
...
@@ -22,7 +22,7 @@ class CustomKeyboardDemoState extends State<CustomKeyboardDemo>{
// TODO: implement build
return
KeyboardMediaQuery
(
child:
Builder
(
builder:
(
ctx
)
{
CoolKeyboard
.
init
(
ctx
);
//
CoolKeyboard.init(ctx);
return
Scaffold
(
appBar:
AppBar
(
title:
Text
(
"Custom Keyboard Demo"
),
...
...
lib/cool_ui.dart
浏览文件 @
5766382a
...
...
@@ -25,4 +25,5 @@ part 'dialogs/weui_toast.dart';
part
'keyboards/keyboard_manager.dart'
;
part
'keyboards/number_keyboard.dart'
;
part
'keyboards/keyboard_controller.dart'
;
part
'keyboards/keyboard_media_query.dart'
;
\ No newline at end of file
part
'keyboards/keyboard_media_query.dart'
;
part
'keyboards/keyboard_root.dart'
;
\ No newline at end of file
lib/keyboards/keyboard_manager.dart
浏览文件 @
5766382a
...
...
@@ -14,8 +14,7 @@ class CoolKeyboard {
static
GlobalKey
<
KeyboardPageState
>
_pageKey
;
static
bool
isInterceptor
=
false
;
static
double
get
keyboardHeight
=>
_keyboardHeight
;
static
double
_keyboardHeight
;
static
ValueNotifier
<
double
>
_keyboardHeightNotifier
=
ValueNotifier
(
null
);
static
init
(
BuildContext
context
)
{
_context
=
context
;
...
...
@@ -76,8 +75,12 @@ class CoolKeyboard {
_codec
.
encodeMethodCall
(
callbackMethodCall
),
(
data
)
{});
});
if
(
_pageKey
!=
null
)
{
_pageKey
.
currentState
.
update
();
}
}
});
if
(
client
!=
null
)
{
await
_sendPlatformMessage
(
"flutter/textinput"
,
_codec
.
encodeMethodCall
(
MethodCall
(
'TextInput.hide'
)));
...
...
@@ -119,21 +122,22 @@ class CoolKeyboard {
static
openKeyboard
()
{
if
(
_keyboardEntry
!=
null
)
return
;
_pageKey
=
GlobalKey
<
KeyboardPageState
>();
_keyboardHeight
=
_currentKeyboard
.
getHeight
(
_context
);
KeyboardMediaQueryState
queryState
=
_context
.
ancestorStateOfType
(
const
TypeMatcher
<
KeyboardMediaQueryState
>())
as
KeyboardMediaQueryState
;
queryState
.
update
();
var
keyboardHeight
=
_currentKeyboard
.
getHeight
(
_context
);
_keyboardHeightNotifier
.
value
=
keyboardHeight
;
// KeyboardMediaQueryState queryState = _context
// .ancestorStateOfType(const TypeMatcher<KeyboardMediaQueryState>())
// as KeyboardMediaQueryState;
// queryState.update();
var
tempKey
=
_pageKey
;
_keyboardEntry
=
OverlayEntry
(
builder:
(
ctx
)
{
if
(
_currentKeyboard
!=
null
&&
_keyboardHeight
!=
null
)
{
if
(
_currentKeyboard
!=
null
&&
_keyboardHeight
Notifier
.
value
!=
null
)
{
return
KeyboardPage
(
key:
tempKey
,
child:
Builder
(
builder:
(
ctx
)
{
return
_currentKeyboard
.
builder
(
ctx
,
_keyboardController
);
}
)
,
height:
_keyboardHeight
);
builder:
(
ctx
)
{
return
_currentKeyboard
?
.
builder
(
ctx
,
_keyboardController
);
},
height:
_keyboardHeight
Notifier
.
value
);
}
else
{
return
Container
();
}
...
...
@@ -150,7 +154,7 @@ class CoolKeyboard {
static
hideKeyboard
({
bool
animation
=
true
})
{
BackButtonInterceptor
.
removeByName
(
'CustomKeyboard'
);
if
(
_keyboardEntry
!=
null
&&
_pageKey
!=
null
)
{
_keyboardHeight
=
null
;
_keyboardHeight
Notifier
.
value
=
null
;
_pageKey
.
currentState
.
animationController
.
addStatusListener
((
AnimationStatus
status
)
{
if
(
status
==
AnimationStatus
.
dismissed
||
...
...
@@ -169,14 +173,12 @@ class CoolKeyboard {
}
}
_pageKey
=
null
;
try
{
KeyboardMediaQueryState
queryState
=
_context
.
ancestorStateOfType
(
const
TypeMatcher
<
KeyboardMediaQueryState
>())
as
KeyboardMediaQueryState
;
queryState
.
update
();
}
catch
(
_
){
}
try
{
// KeyboardMediaQueryState queryState = _context
// .ancestorStateOfType(const TypeMatcher<KeyboardMediaQueryState>())
// as KeyboardMediaQueryState;
// queryState.update();
}
catch
(
_
)
{}
}
static
clearKeyboard
()
{
...
...
@@ -321,9 +323,9 @@ class CKTextInputType extends TextInputType {
}
class
KeyboardPage
extends
StatefulWidget
{
final
Widget
child
;
final
Widget
Builder
builder
;
final
double
height
;
const
KeyboardPage
({
this
.
child
,
this
.
height
,
Key
key
})
:
super
(
key:
key
);
const
KeyboardPage
({
this
.
builder
,
this
.
height
,
Key
key
})
:
super
(
key:
key
);
@override
State
<
StatefulWidget
>
createState
()
=>
KeyboardPageState
();
...
...
@@ -334,6 +336,7 @@ class KeyboardPageState extends State<KeyboardPage>
AnimationController
animationController
;
Animation
<
double
>
doubleAnimation
;
double
bottom
;
Widget
_lastBuildWidget
;
@override
void
initState
()
{
...
...
@@ -351,7 +354,15 @@ class KeyboardPageState extends State<KeyboardPage>
@override
Widget
build
(
BuildContext
context
)
{
return
Positioned
(
child:
IntrinsicHeight
(
child:
widget
.
child
),
child:
IntrinsicHeight
(
child:
Builder
(
builder:
(
ctx
)
{
var
result
=
widget
.
builder
(
ctx
);
if
(
result
!=
null
)
{
_lastBuildWidget
=
result
;
}
return
_lastBuildWidget
;
},
)),
bottom:
(
widget
.
height
-
doubleAnimation
.
value
)
*
-
1
);
}
...
...
@@ -368,4 +379,8 @@ class KeyboardPageState extends State<KeyboardPage>
exitKeyboard
()
{
animationController
.
reverse
();
}
update
()
{
this
.
setState
(()
{});
}
}
lib/keyboards/keyboard_media_query.dart
浏览文件 @
5766382a
...
...
@@ -12,19 +12,30 @@ class KeyboardMediaQuery extends StatefulWidget{
}
class
KeyboardMediaQueryState
extends
State
<
KeyboardMediaQuery
>{
double
keyboardHeight
;
@override
void
initState
(){
super
.
initState
();
CoolKeyboard
.
_keyboardHeightNotifier
.
addListener
(
onUpdateHeight
);
}
@override
Widget
build
(
BuildContext
context
)
{
// TODO: implement build
var
data
=
MediaQuery
.
of
(
context
);
var
data
=
MediaQuery
.
of
(
context
,
nullOk:
true
);
if
(
data
==
null
){
data
=
MediaQueryData
.
fromWindow
(
WidgetsBinding
.
instance
.
window
);
}
// TODO: implement build
return
MediaQuery
(
child:
widget
.
child
,
data:
data
.
copyWith
(
viewInsets:
data
.
viewInsets
.
copyWith
(
bottom:
CoolKeyboard
.
keyboardHeight
))
data:
data
.
copyWith
(
viewInsets:
data
.
viewInsets
.
copyWith
(
bottom:
CoolKeyboard
.
_keyboardHeightNotifier
.
value
??
data
.
viewInsets
.
bottom
))
);
}
update
(){
onUpdateHeight
(){
setState
(()=>{});
}
}
\ No newline at end of file
lib/keyboards/keyboard_root.dart
0 → 100644
浏览文件 @
5766382a
part of
cool_ui
;
class
KeyboardRootWidget
extends
StatefulWidget
{
final
Widget
child
;
/// The text direction for this subtree.
final
TextDirection
textDirection
;
const
KeyboardRootWidget
({
Key
key
,
this
.
child
,
this
.
textDirection
=
TextDirection
.
ltr
})
:
super
(
key:
key
);
@override
State
<
StatefulWidget
>
createState
()
{
// TODO: implement createState
return
KeyboardRootState
();
}
}
class
KeyboardRootState
extends
State
<
KeyboardRootWidget
>
{
List
<
OverlayEntry
>
_initialEntries
=
[];
@override
void
initState
()
{
super
.
initState
();
_initialEntries
.
add
(
this
.
initChild
());
}
@override
Widget
build
(
BuildContext
context
)
{
// TODO: implement build
return
Directionality
(
textDirection:
widget
.
textDirection
,
child:
KeyboardMediaQuery
(
child:
Overlay
(
initialEntries:
_initialEntries
,
)));
}
OverlayEntry
initChild
()
{
return
OverlayEntry
(
builder:
(
ctx
)
{
CoolKeyboard
.
init
(
ctx
);
return
widget
.
child
;
});
}
}
pubspec.lock
浏览文件 @
5766382a
...
...
@@ -7,7 +7,7 @@ packages:
name: async
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.
2
.0"
version: "2.
3
.0"
back_button_interceptor:
dependency: "direct main"
description:
...
...
@@ -21,7 +21,7 @@ packages:
name: boolean_selector
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.0.
4
"
version: "1.0.
5
"
charcode:
dependency: transitive
description:
...
...
@@ -59,28 +59,28 @@ packages:
name: meta
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.1.
6
"
version: "1.1.
7
"
path:
dependency: transitive
description:
name: path
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.6.
2
"
version: "1.6.
4
"
pedantic:
dependency: transitive
description:
name: pedantic
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.
7.0
"
version: "1.
8.0+1
"
quiver:
dependency: transitive
description:
name: quiver
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.0.
3
"
version: "2.0.
5
"
sky_engine:
dependency: transitive
description: flutter
...
...
@@ -113,7 +113,7 @@ packages:
name: string_scanner
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.0.
4
"
version: "1.0.
5
"
term_glyph:
dependency: transitive
description:
...
...
pubspec.yaml
浏览文件 @
5766382a
name
:
cool_ui
description
:
Some practical Widget for flutter,Popover,Weui,Custom Keyboard
version
:
0.
2.2
version
:
0.
3.0
author
:
Kevin <liangkaikevin@gmail.com>
homepage
:
https://github.com/Im-Kevin/cool_ui
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论