Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
98958cc4
提交
98958cc4
authored
5月 11, 2020
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
升级版本0.5.0
修复Flutter1.17版本后无法在打开第二个自定义键盘不显示的问题
上级
9382a98d
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
100 行增加
和
25 行删除
+100
-25
CHANGELOG.md
CHANGELOG.md
+3
-0
build.gradle
example/android/app/build.gradle
+2
-2
gradle.properties
example/android/gradle.properties
+1
-0
flutter_export_environment.sh
example/ios/Flutter/flutter_export_environment.sh
+4
-3
keyboard_manager.dart
lib/keyboards/keyboard_manager.dart
+5
-4
table.dart
lib/widgets/tables/table.dart
+27
-0
pubspec.lock
pubspec.lock
+56
-14
pubspec.yaml
pubspec.yaml
+2
-2
没有找到文件。
CHANGELOG.md
浏览文件 @
98958cc4
## [0.5.0]
*
TODO: 修复Flutter1.17版本后无法在打开第二个自定义键盘不显示的问题
## [0.4.1]
*
TODO: 修复了键盘高度从小变大的时候无法改变的问题, issues: 36
*
TODO: 键盘添加了传参功能,可从外部传参到键盘内部
...
...
example/android/app/build.gradle
浏览文件 @
98958cc4
...
...
@@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
apply
from:
"$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android
{
compileSdkVersion
2
7
compileSdkVersion
2
8
sourceSets
{
main
.
java
.
srcDirs
+=
'src/main/kotlin'
...
...
@@ -40,7 +40,7 @@ android {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId
"info.geteasy.cooluiexample"
minSdkVersion
16
targetSdkVersion
2
7
targetSdkVersion
2
8
versionCode
flutterVersionCode
.
toInteger
()
versionName
flutterVersionName
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
...
...
example/android/gradle.properties
浏览文件 @
98958cc4
org.gradle.jvmargs
=
-Xmx1536M
android.enableR8
=
true
example/ios/Flutter/flutter_export_environment.sh
浏览文件 @
98958cc4
#!/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_ROOT=
F
:
\f
lutter"
export
"FLUTTER_APPLICATION_PATH=
F
:
\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
"OTHER_LDFLAGS=
$(
inherited
)
-framework Flutter"
export
"FLUTTER_FRAMEWORK_DIR=F:
\f
lutter
\b
in
\c
ache
\a
rtifacts
\e
ngine
\i
os"
export
"FLUTTER_BUILD_NAME=1.0.0"
export
"FLUTTER_BUILD_NUMBER=1"
lib/keyboards/keyboard_manager.dart
浏览文件 @
98958cc4
...
...
@@ -27,7 +27,7 @@ class CoolKeyboard {
static
interceptorInput
()
{
if
(
isInterceptor
)
return
;
isInterceptor
=
true
;
defaultBinaryMessenger
.
setMockMessageHandler
(
"flutter/textinput"
,
ServicesBinding
.
instance
.
defaultBinaryMessenger
.
setMockMessageHandler
(
"flutter/textinput"
,
(
ByteData
data
)
async
{
var
methodCall
=
_codec
.
decodeMethodCall
(
data
);
switch
(
methodCall
.
method
)
{
...
...
@@ -172,11 +172,12 @@ class CoolKeyboard {
// }
// });
if
(
animation
)
{
_keyboardEntry
=
null
;
final
keyboardEntry
=
_keyboardEntry
;
_pageKey
.
currentState
.
exitKeyboard
();
Future
.
delayed
(
Duration
(
milliseconds:
116
)).
then
((
_
)
{
if
(
_keyboardEntry
!=
null
)
{
_keyboardEntry
.
remove
();
_keyboardEntry
=
null
;
if
(
keyboardEntry
!=
null
)
{
keyboardEntry
.
remove
();
}
});
}
else
{
...
...
lib/widgets/tables/table.dart
0 → 100644
浏览文件 @
98958cc4
import
'package:flutter/material.dart'
;
class
CoolTable
extends
StatefulWidget
{
@override
State
<
StatefulWidget
>
createState
()
{
// TODO: implement createState
return
null
;
}
}
class
CoolTableState
extends
State
<
CoolTable
>{
@override
Widget
build
(
BuildContext
context
)
{
// TODO: implement build
return
null
;
}
}
class
CoolColumnInfo
{
final
double
flex
;
final
double
width
;
final
double
minWidth
;
final
double
maxWidth
;
const
CoolColumnInfo
({
this
.
flex
,
this
.
width
,
this
.
minWidth
,
this
.
maxWidth
});
}
\ No newline at end of file
pubspec.lock
浏览文件 @
98958cc4
# Generated by pub
# See https://dart.dev/tools/pub/glossary#lockfile
packages:
archive:
dependency: transitive
description:
name: archive
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.0.13"
args:
dependency: transitive
description:
name: args
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.6.0"
async:
dependency: transitive
description:
name: async
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.
3.0
"
version: "2.
4.1
"
back_button_interceptor:
dependency: "direct main"
description:
...
...
@@ -21,21 +35,35 @@ packages:
name: boolean_selector
url: "https://pub.flutter-io.cn"
source: hosted
version: "
1.0.5
"
version: "
2.0.0
"
charcode:
dependency: transitive
description:
name: charcode
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.1.
2
"
version: "1.1.
3
"
collection:
dependency: transitive
description:
name: collection
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.14.11"
version: "1.14.12"
convert:
dependency: transitive
description:
name: convert
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.1.1"
crypto:
dependency: transitive
description:
name: crypto
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.1.4"
flutter:
dependency: "direct main"
description: flutter
...
...
@@ -46,20 +74,27 @@ packages:
description: flutter
source: sdk
version: "0.0.0"
image:
dependency: transitive
description:
name: image
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.1.12"
matcher:
dependency: transitive
description:
name: matcher
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.12.
5
"
version: "0.12.
6
"
meta:
dependency: transitive
description:
name: meta
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.1.
7
"
version: "1.1.
8
"
path:
dependency: transitive
description:
...
...
@@ -67,20 +102,20 @@ packages:
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.6.4"
pe
dantic
:
pe
titparser
:
dependency: transitive
description:
name: pe
dantic
name: pe
titparser
url: "https://pub.flutter-io.cn"
source: hosted
version: "
1.8.0+1
"
version: "
2.4.0
"
quiver:
dependency: transitive
description:
name: quiver
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.
0.5
"
version: "2.
1.3
"
sky_engine:
dependency: transitive
description: flutter
...
...
@@ -92,7 +127,7 @@ packages:
name: source_span
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.
5.5
"
version: "1.
7.0
"
stack_trace:
dependency: transitive
description:
...
...
@@ -127,7 +162,7 @@ packages:
name: test_api
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.2.5"
version: "0.2.
1
5"
typed_data:
dependency: transitive
description:
...
...
@@ -142,6 +177,13 @@ packages:
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.0.8"
xml:
dependency: transitive
description:
name: xml
url: "https://pub.flutter-io.cn"
source: hosted
version: "3.6.1"
sdks:
dart: ">=2.
2.2
<3.0.0"
flutter: ">=1.7.0 <2.0.0"
dart: ">=2.
6.0
<3.0.0"
flutter: ">=1.
1
7.0 <2.0.0"
pubspec.yaml
浏览文件 @
98958cc4
name
:
cool_ui
description
:
Some practical Widget for flutter,Popover,Weui,Custom Keyboard
version
:
0.
4.1
version
:
0.
5.0
author
:
Kevin <liangkaikevin@gmail.com>
homepage
:
https://github.com/Im-Kevin/cool_ui
environment
:
sdk
:
"
>=2.0.0-dev.68.0
<3.0.0"
flutter
:
"
>=1.7.0
<2.0.0"
flutter
:
"
>=1.
1
7.0
<2.0.0"
dependencies
:
back_button_interceptor
:
^4.0.6
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论