Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
30902c48
提交
30902c48
authored
10月 28, 2018
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
发布0.1.0版本,详细请看CHANGELO.md
上级
6c37b0d0
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
72 行增加
和
22 行删除
+72
-22
CHANGELOG.md
CHANGELOG.md
+7
-2
README.md
README.md
+1
-1
popover_demo.gif
images/popover_demo.gif
+0
-0
cool_ui.dart
lib/cool_ui.dart
+2
-3
cupertino_popover.dart
lib/widgets/popover/cupertino_popover.dart
+9
-5
cupertino_popover_menu_item.dart
lib/widgets/popover/cupertino_popover_menu_item.dart
+51
-9
pubspec.yaml
pubspec.yaml
+2
-2
没有找到文件。
CHANGELOG.md
浏览文件 @
30902c48
...
@@ -6,4 +6,9 @@
...
@@ -6,4 +6,9 @@
*
TODO: 添加了CupertinoPopoverMenuList
*
TODO: 添加了CupertinoPopoverMenuList
*
TODO: 添加了CupertinoPopoverMenuItem
*
TODO: 添加了CupertinoPopoverMenuItem
*
TODO: 修改了CupertionPopover动画,
*
TODO: 修改了CupertionPopover动画,
\ No newline at end of file
## [0.1.0] - TODO: 改进了CupertionPopover和添加了CupertinoPopoverMenuItem
*
TODO: 改进了CupertionPopover箭头的位置
*
TODO: 改进了CupertinoPopoverMenuItem按下的动画,并且添加了onTap
\ No newline at end of file
README.md
浏览文件 @
30902c48
...
@@ -6,7 +6,7 @@ Usage
...
@@ -6,7 +6,7 @@ Usage
Add this to your package's pubspec.yaml file:
Add this to your package's pubspec.yaml file:
```
yaml
```
yaml
dependencies
:
dependencies
:
cool_ui
:
"
^0.
0.9
"
cool_ui
:
"
^0.
1.0
"
```
```
## CupertinoPopover
## CupertinoPopover
...
...
images/popover_demo.gif
查看替换文件 @
6c37b0d0
浏览文件 @
30902c48
差异被折叠。
点击展开。
lib/cool_ui.dart
浏览文件 @
30902c48
...
@@ -4,5 +4,5 @@ import 'package:flutter/material.dart';
...
@@ -4,5 +4,5 @@ import 'package:flutter/material.dart';
part
'utils/screen_utils.dart'
;
part
'utils/screen_utils.dart'
;
part
'utils/widget_utils.dart'
;
part
'utils/widget_utils.dart'
;
part
'popover/cupertino_popover.dart'
;
part
'widgets/popover/cupertino_popover.dart'
;
part
'popover/cupertino_popover_menu_item.dart'
;
part
'widgets/popover/cupertino_popover_menu_item.dart'
;
\ No newline at end of file
lib/popover/cupertino_popover.dart
→
lib/
widgets/
popover/cupertino_popover.dart
浏览文件 @
30902c48
...
@@ -11,6 +11,10 @@ class CupertinoPopoverButton extends StatelessWidget{
...
@@ -11,6 +11,10 @@ class CupertinoPopoverButton extends StatelessWidget{
final
Duration
transitionDuration
;
final
Duration
transitionDuration
;
const
CupertinoPopoverButton
({
const
CupertinoPopoverButton
({
@required
this
.
child
,
@required
this
.
child
,
@Deprecated
(
'建议不要直接使用popoverBody,而是使用popoverBuild.'
)
this
.
popoverBody
,
this
.
popoverBody
,
this
.
popoverBuild
,
this
.
popoverBuild
,
this
.
popoverColor
=
Colors
.
white
,
this
.
popoverColor
=
Colors
.
white
,
...
@@ -34,7 +38,6 @@ class CupertinoPopoverButton extends StatelessWidget{
...
@@ -34,7 +38,6 @@ class CupertinoPopoverButton extends StatelessWidget{
showGeneralDialog
(
showGeneralDialog
(
context:
context
,
context:
context
,
pageBuilder:
(
BuildContext
buildContext
,
Animation
<
double
>
animation
,
Animation
<
double
>
secondaryAnimation
)
{
pageBuilder:
(
BuildContext
buildContext
,
Animation
<
double
>
animation
,
Animation
<
double
>
secondaryAnimation
)
{
final
ThemeData
theme
=
Theme
.
of
(
context
,
shadowThemeOnly:
true
);
return
Builder
(
return
Builder
(
builder:
(
BuildContext
context
)
{
builder:
(
BuildContext
context
)
{
return
Container
();
return
Container
();
...
@@ -169,16 +172,17 @@ class CupertinoPopoverState extends State<CupertinoPopover> with TickerProvider
...
@@ -169,16 +172,17 @@ class CupertinoPopoverState extends State<CupertinoPopover> with TickerProvider
double
arrowTop
=
0.0
;
double
arrowTop
=
0.0
;
double
bodyTop
=
0.0
;
double
bodyTop
=
0.0
;
double
bodyLeft
=
0.0
;
double
bodyLeft
=
0.0
;
if
(
widget
.
attachRect
.
left
>
widget
.
width
/
2
&&
ScreenUtil
.
screenWidth
-
widget
.
attachRect
.
right
>
widget
.
width
/
2
){
//判断是否可以在中间
arrowLeft
=
widget
.
attachRect
.
left
+
widget
.
attachRect
.
width
/
2
-
_arrowWidth
/
2
;
arrowLeft
=
widget
.
attachRect
.
left
+
widget
.
attachRect
.
width
/
2
-
_arrowWidth
/
2
;
if
(
widget
.
attachRect
.
left
>
widget
.
width
/
2
&&
ScreenUtil
.
screenWidth
-
widget
.
attachRect
.
right
>
widget
.
width
/
2
){
//判断是否可以在中间
bodyLeft
=
widget
.
attachRect
.
left
+
widget
.
attachRect
.
width
/
2
-
widget
.
width
/
2
;
bodyLeft
=
widget
.
attachRect
.
left
+
widget
.
attachRect
.
width
/
2
-
widget
.
width
/
2
;
}
else
if
(
widget
.
attachRect
.
left
<
widget
.
width
/
2
){
//靠左
}
else
if
(
widget
.
attachRect
.
left
<
widget
.
width
/
2
){
//靠左
bodyLeft
=
10.0
;
bodyLeft
=
10.0
;
arrowLeft
=
bodyLeft
+
widget
.
radius
;
}
else
{
//靠右
}
else
{
//靠右
bodyLeft
=
ScreenUtil
.
screenWidth
-
10.0
-
widget
.
width
;
bodyLeft
=
ScreenUtil
.
screenWidth
-
10.0
-
widget
.
width
;
arrowLeft
=
ScreenUtil
.
screenWidth
-
10.0
-
_arrowWidth
-
5
-
widget
.
radius
;
}
}
if
(
isArrowUp
){
if
(
isArrowUp
){
arrowTop
=
widget
.
attachRect
.
bottom
;
arrowTop
=
widget
.
attachRect
.
bottom
;
bodyTop
=
arrowTop
+
_arrowHeight
;
bodyTop
=
arrowTop
+
_arrowHeight
;
...
...
lib/popover/cupertino_popover_menu_item.dart
→
lib/
widgets/
popover/cupertino_popover_menu_item.dart
浏览文件 @
30902c48
...
@@ -24,36 +24,78 @@ class CupertinoPopoverMenuList extends StatelessWidget{
...
@@ -24,36 +24,78 @@ class CupertinoPopoverMenuList extends StatelessWidget{
}
}
class
CupertinoPopoverMenuItem
extends
State
less
Widget
{
class
CupertinoPopoverMenuItem
extends
State
ful
Widget
{
final
Widget
leading
;
final
Widget
leading
;
final
Widget
child
;
final
Widget
child
;
final
VoidCallback
onTap
;
final
bool
isTapClosePopover
;
const
CupertinoPopoverMenuItem
({
this
.
leading
,
this
.
child
});
const
CupertinoPopoverMenuItem
({
this
.
leading
,
this
.
child
,
this
.
onTap
,
this
.
isTapClosePopover
=
true
});
@override
State
<
StatefulWidget
>
createState
()
=>
CupertinoPopoverMenuItemState
();
}
class
CupertinoPopoverMenuItemState
extends
State
<
CupertinoPopoverMenuItem
>{
bool
isDown
=
false
;
@override
@override
Widget
build
(
BuildContext
context
)
{
Widget
build
(
BuildContext
context
)
{
List
<
Widget
>
widgets
=
[];
List
<
Widget
>
widgets
=
[];
if
(
leading
!=
null
){
if
(
widget
.
leading
!=
null
){
widgets
.
add
(
Container
(
widgets
.
add
(
Container
(
padding:
EdgeInsets
.
only
(
left:
5.0
,
right:
5.0
),
padding:
EdgeInsets
.
only
(
left:
5.0
,
right:
5.0
),
width:
35.0
,
width:
35.0
,
height:
35.0
,
height:
35.0
,
child:
IconTheme
(
child:
IconTheme
(
data:
IconThemeData
(
color:
Color
(
0xff007aff
),
size:
20.0
),
data:
IconThemeData
(
color:
Color
(
0xff007aff
),
size:
20.0
),
child:
leading
child:
widget
.
leading
),
),
));
));
}
}
widgets
.
add
(
Expanded
(
child:
DefaultTextStyle
(
style:
TextStyle
(
widgets
.
add
(
Expanded
(
child:
DefaultTextStyle
(
style:
TextStyle
(
color:
Color
(
0xff007aff
),
color:
Color
(
0xff007aff
),
fontSize:
17.0
fontSize:
17.0
),
child:
child
)));
),
child:
widget
.
child
)));
return
Padding
(
return
GestureDetector
(
padding:
EdgeInsets
.
only
(
top:
2.5
,
bottom:
2.5
),
onTapDown:
(
detail
){
child:
Row
(
setState
(()
{
children:
widgets
isDown
=
true
;
});
},
onTapUp:
(
detail
){
if
(
isDown
){
setState
(()
{
isDown
=
false
;
});
if
(
widget
.
onTap
!=
null
){
widget
.
onTap
();
}
if
(
widget
.
isTapClosePopover
){
Navigator
.
of
(
context
).
pop
();
}
}
},
onTapCancel:
(){
if
(
isDown
){
setState
(()
{
isDown
=
false
;
});
}
},
child:
Container
(
color:
isDown
?
Color
(
0xFFd9d9d9
):
Colors
.
white
,
child:
Padding
(
padding:
EdgeInsets
.
only
(
top:
2.5
,
bottom:
2.5
),
child:
Row
(
children:
widgets
),
),
),
),
);
);
...
...
pubspec.yaml
浏览文件 @
30902c48
name
:
cool_ui
name
:
cool_ui
description
:
用flutter实现一些我认为好看的UI控件
description
:
用flutter实现一些我认为好看的UI控件
,目前暂时只有Popover,不过有什么觉得好看的可以提Issue
version
:
0.
0.9
version
:
0.
1.0
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
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论