Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
94fbf371
提交
94fbf371
authored
7月 11, 2020
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
CupertinoPopoverDirection添加了left和right
上级
ecd2f383
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
106 行增加
和
10 行删除
+106
-10
CHANGELOG.md
CHANGELOG.md
+3
-0
README.md
README.md
+1
-1
main.dart
example/lib/main.dart
+8
-0
table_demo.dart
example/lib/pages/table_demo.dart
+30
-0
cool_ui.dart
lib/cool_ui.dart
+6
-2
scroll_utils.dart
lib/utils/scroll_utils.dart
+14
-0
cupertino_popover.dart
lib/widgets/popover/cupertino_popover.dart
+0
-0
table.dart
lib/widgets/tables/table.dart
+43
-6
pubspec.yaml
pubspec.yaml
+1
-1
没有找到文件。
CHANGELOG.md
浏览文件 @
94fbf371
## [0.6.1]
*
TODO: CupertinoPopoverDirection添加了left和right
## [0.6.0]
*
TODO: 重构了键盘弹出的方式,修复长按输入框报错问题
...
...
README.md
浏览文件 @
94fbf371
...
...
@@ -9,7 +9,7 @@ Usage Add this to your package's pubspec.yaml file:
Flutter >=1.17
```
yaml
dependencies
:
cool_ui
:
"
^0.6.
0
"
cool_ui
:
"
^0.6.
1
"
```
Flutter >=1.7
...
...
example/lib/main.dart
浏览文件 @
94fbf371
...
...
@@ -2,6 +2,7 @@ import 'package:cool_ui_example/cool_u_i_example_icons.dart';
import
'package:cool_ui_example/pages/custom_keyboard.dart'
;
import
'package:cool_ui_example/pages/paint_event_demo.dart'
;
import
'package:cool_ui_example/pages/popover_demo.dart'
;
import
'package:cool_ui_example/pages/table_demo.dart'
;
import
'package:cool_ui_example/pages/weui_toast_demo.dart'
;
import
'package:cool_ui/cool_ui.dart'
;
import
'package:flutter/material.dart'
;
...
...
@@ -113,6 +114,13 @@ class _MyHomePageState extends State<MyHomePage> {
Navigator
.
of
(
context
).
push
(
MaterialPageRoute
(
builder:
(
context
)
=>
CustomKeyboardDemo
()));
},
),
ListTile
(
title:
Text
(
"TableEvent"
),
onTap:
()
{
Navigator
.
of
(
context
).
push
(
MaterialPageRoute
(
builder:
(
context
)
=>
TableDemo
()));
},
)
],
));
...
...
example/lib/pages/table_demo.dart
0 → 100644
浏览文件 @
94fbf371
import
'package:flutter/material.dart'
;
import
'package:flutter/cupertino.dart'
;
import
'package:cool_ui/cool_ui.dart'
;
class
TableDemo
extends
StatefulWidget
{
@override
State
<
StatefulWidget
>
createState
()
{
// TODO: implement createState
return
TableDemoState
();
}
}
class
TableDemoState
extends
State
<
TableDemo
>{
@override
Widget
build
(
BuildContext
context
)
{
// TODO: implement build
return
Scaffold
(
appBar:
AppBar
(
title:
Text
(
"Table Demo"
),
),
body:
CoolTable
()
);
}
}
\ No newline at end of file
lib/cool_ui.dart
浏览文件 @
94fbf371
...
...
@@ -12,6 +12,7 @@ import 'package:flutter/rendering.dart';
part
'utils/widget_util.dart'
;
part
'utils/screen_util.dart'
;
part
'utils/scroll_utils.dart'
;
part
'icons/cool_ui_icons.dart'
;
...
...
@@ -26,4 +27,7 @@ part 'keyboards/keyboard_manager.dart';
part
'keyboards/number_keyboard.dart'
;
part
'keyboards/keyboard_controller.dart'
;
part
'keyboards/keyboard_media_query.dart'
;
part
'keyboards/keyboard_root.dart'
;
\ No newline at end of file
part
'keyboards/keyboard_root.dart'
;
part
'widgets/tables/table.dart'
;
\ No newline at end of file
lib/utils/scroll_utils.dart
0 → 100644
浏览文件 @
94fbf371
part of
cool_ui
;
connectScroll
(
ScrollController
scroll1
,
ScrollController
scroll2
){
scroll1
.
addListener
(()
{
if
(
scroll2
.
offset
!=
scroll1
.
offset
){
scroll2
.
jumpTo
(
scroll1
.
offset
);
}
});
scroll2
.
addListener
(()
{
if
(
scroll1
.
offset
!=
scroll2
.
offset
){
scroll1
.
jumpTo
(
scroll2
.
offset
);
}
});
}
lib/widgets/popover/cupertino_popover.dart
浏览文件 @
94fbf371
差异被折叠。
点击展开。
lib/widgets/tables/table.dart
浏览文件 @
94fbf371
import
'package:flutter/material.dart'
;
part of
cool_ui
;
class
CoolTable
extends
StatefulWidget
{
@override
State
<
StatefulWidget
>
createState
()
{
// TODO: implement createState
return
null
;
return
CoolTableState
()
;
}
}
class
CoolTableState
extends
State
<
CoolTable
>{
ScrollController
hTitle
=
ScrollController
();
ScrollController
hBody
=
ScrollController
();
@override
void
initState
()
{
// TODO: implement initState
super
.
initState
();
connectScroll
(
hTitle
,
hBody
);
}
@override
Widget
build
(
BuildContext
context
)
{
// TODO: implement build
return
null
;
return
Column
(
mainAxisSize:
MainAxisSize
.
min
,
children:
<
Widget
>[
SizedBox
(
height:
50
,
child:
ListView
(
scrollDirection:
Axis
.
horizontal
,
shrinkWrap:
true
,
physics:
BouncingScrollPhysics
(),
controller:
hTitle
,
children:
<
Widget
>[
Text
(
'1111111111111111111111111111111111111111111111111111111111111111111111111111'
)
],
),
width:
375
,),
SizedBox
(
height:
50
,
child:
ListView
(
physics:
BouncingScrollPhysics
(),
scrollDirection:
Axis
.
horizontal
,
controller:
hBody
,
shrinkWrap:
true
,
children:
<
Widget
>[
Text
(
'1111111111111111111111111111111111111111111111111111111111111111111111111111'
)
],
)),
],
);
}
}
class
CoolColumnInfo
{
final
double
flex
;
final
double
width
;
final
double
minWidth
;
final
double
maxWidth
;
final
Widget
title
;
const
CoolColumnInfo
({
this
.
flex
,
this
.
width
,
this
.
minWidth
,
this
.
maxWidth
});
const
CoolColumnInfo
({
this
.
flex
,
this
.
width
,
this
.
title
});
}
\ No newline at end of file
pubspec.yaml
浏览文件 @
94fbf371
name
:
cool_ui
description
:
Some practical Widget for flutter,Popover,Weui,Custom Keyboard
version
:
0.6.
0
version
:
0.6.
1
author
:
Kevin <liangkaikevin@gmail.com>
homepage
:
https://github.com/Im-Kevin/cool_ui
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论