Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
060afb58
提交
060afb58
authored
10月 27, 2018
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
发布0.0.9版本
上级
419141d6
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
149 行增加
和
76 行删除
+149
-76
CHANGELOG.md
CHANGELOG.md
+5
-3
README.md
README.md
+14
-1
main.dart
example/lib/main.dart
+1
-1
PopoverDemo.dart
example/lib/pages/PopoverDemo.dart
+27
-21
cool_ui.dart
lib/cool_ui.dart
+3
-2
cupertino_popover.dart
lib/popover/cupertino_popover.dart
+49
-45
cupertino_popover_menu_item.dart
lib/popover/cupertino_popover_menu_item.dart
+49
-2
pubspec.yaml
pubspec.yaml
+1
-1
没有找到文件。
CHANGELOG.md
浏览文件 @
060afb58
...
@@ -2,6 +2,8 @@
...
@@ -2,6 +2,8 @@
*
TODO: Describe initial release.
*
TODO: Describe initial release.
## [0.0.9] - TODO:
修改了CupertionPopover动画
## [0.0.9] - TODO:
添加了一些控件,改进了CupertionPopover
*
TODO: 修改了修改了CupertionPopover动画,添加了CupertinoPopoverMenuItem控件
*
TODO: 添加了CupertinoPopoverMenuList
\ No newline at end of file
*
TODO: 添加了CupertinoPopoverMenuItem
*
TODO: 修改了CupertionPopover动画,
\ No newline at end of file
README.md
浏览文件 @
060afb58
...
@@ -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.
8
"
cool_ui
:
"
^0.0.
9
"
```
```
## CupertinoPopover
## CupertinoPopover
...
@@ -36,3 +36,16 @@ CupertinoPopoverButton(
...
@@ -36,3 +36,16 @@ CupertinoPopoverButton(
popoverWidth:
100.0
,
popoverWidth:
100.0
,
popoverHeight:
100.0
);
popoverHeight:
100.0
);
```
```
## CupertinoPopoverMenuList,CupertinoPopoverMenuItem
用于快速搭建一个弹出的菜单项
#### 案例核心代码
```
dart
CupertinoPopoverMenuList
(
children:
<
Widget
>[
CupertinoPopoverMenuItem
(
leading:
Icon
(
Icons
.
add
),
child:
Text
(
"新增"
),),
CupertinoPopoverMenuItem
(
leading:
Icon
(
Icons
.
edit
),
child:
Text
(
"修改"
),),
CupertinoPopoverMenuItem
(
leading:
Icon
(
Icons
.
delete
),
child:
Text
(
"删除"
),)
],
)
```
example/lib/main.dart
浏览文件 @
060afb58
...
@@ -19,7 +19,7 @@ class MyApp extends StatelessWidget {
...
@@ -19,7 +19,7 @@ class MyApp extends StatelessWidget {
// "hot reload" (press "r" in the console where you ran "flutter run",
// "hot reload" (press "r" in the console where you ran "flutter run",
// or press Run > Flutter Hot Reload in IntelliJ). Notice that the
// or press Run > Flutter Hot Reload in IntelliJ). Notice that the
// counter didn't reset back to zero; the application is not restarted.
// counter didn't reset back to zero; the application is not restarted.
primarySwatch:
Colors
.
blue
,
primarySwatch:
Colors
.
blue
),
),
home:
MyHomePage
(
title:
'Flutter Demo Home Page'
),
home:
MyHomePage
(
title:
'Flutter Demo Home Page'
),
);
);
...
...
example/lib/pages/PopoverDemo.dart
浏览文件 @
060afb58
import
'package:cool_ui_example/cool_u_i_example_icons.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/cupertino.dart'
;
import
'package:flutter/cupertino.dart'
;
import
'package:cool_ui/cool_ui.dart'
;
import
'package:cool_ui/cool_ui.dart'
;
class
PopoverDemo
extends
StatefulWidget
{
class
PopoverDemo
extends
StatefulWidget
{
@override
@override
State
<
StatefulWidget
>
createState
()
{
State
<
StatefulWidget
>
createState
()
{
...
@@ -49,25 +49,30 @@ class PopoverDemoState extends State<PopoverDemo>{
...
@@ -49,25 +49,30 @@ class PopoverDemoState extends State<PopoverDemo>{
}
}
Widget
_buildPopoverButton
(
String
btnTitle
,
String
bodyMessage
){
Widget
_buildPopoverButton
(
String
btnTitle
,
String
bodyMessage
){
return
CupertinoPopoverButton
(
return
Padding
(
child:
Container
(
padding:
EdgeInsets
.
all
(
20.0
),
margin:
EdgeInsets
.
all
(
20.0
),
child:
CupertinoPopoverButton
(
width:
80.0
,
child:
Container
(
height:
40.0
,
width:
80.0
,
decoration:
BoxDecoration
(
height:
40.0
,
color:
Colors
.
white
,
decoration:
BoxDecoration
(
borderRadius:
BorderRadius
.
all
(
Radius
.
circular
(
5.0
)),
color:
Colors
.
white
,
boxShadow:
[
BoxShadow
(
color:
Colors
.
black12
,
blurRadius:
5.0
)]
borderRadius:
BorderRadius
.
all
(
Radius
.
circular
(
5.0
)),
),
boxShadow:
[
BoxShadow
(
color:
Colors
.
black12
,
blurRadius:
5.0
)]
child:
Center
(
child:
Text
(
btnTitle
)),
),
),
child:
Center
(
child:
Text
(
btnTitle
)),
popoverBody:
Container
(
),
// color: Colors.lightBlue,
popoverBuild:
(
context
)
{
width:
100.0
,
return
CupertinoPopoverMenuList
(
height:
100.0
,
children:
<
Widget
>[
child:
Text
(
bodyMessage
),
CupertinoPopoverMenuItem
(
leading:
Icon
(
Icons
.
add
),
child:
Text
(
"新增"
),),
),
CupertinoPopoverMenuItem
(
leading:
Icon
(
Icons
.
edit
),
child:
Text
(
"修改"
),),
popoverWidth:
100.0
,
CupertinoPopoverMenuItem
(
leading:
Icon
(
Icons
.
delete
),
child:
Text
(
"删除"
),)
popoverHeight:
100.0
);
],
);
},
popoverWidth:
150.0
,
popoverHeight:
123.0
)
);
}
}
}
}
\ No newline at end of file
lib/cool_ui.dart
浏览文件 @
060afb58
...
@@ -4,4 +4,5 @@ import 'package:flutter/material.dart';
...
@@ -4,4 +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
'popover/cupertino_popover.dart'
;
\ No newline at end of file
part
'popover/cupertino_popover_menu_item.dart'
;
\ No newline at end of file
lib/popover/cupertino_popover.dart
浏览文件 @
060afb58
...
@@ -3,6 +3,7 @@ part of cool_ui;
...
@@ -3,6 +3,7 @@ part of cool_ui;
class
CupertinoPopoverButton
extends
StatelessWidget
{
class
CupertinoPopoverButton
extends
StatelessWidget
{
final
Widget
child
;
final
Widget
child
;
final
Widget
popoverBody
;
final
Widget
popoverBody
;
final
WidgetBuilder
popoverBuild
;
final
double
popoverWidth
;
final
double
popoverWidth
;
final
double
popoverHeight
;
final
double
popoverHeight
;
final
Color
popoverColor
;
final
Color
popoverColor
;
...
@@ -10,12 +11,15 @@ class CupertinoPopoverButton extends StatelessWidget{
...
@@ -10,12 +11,15 @@ class CupertinoPopoverButton extends StatelessWidget{
final
Duration
transitionDuration
;
final
Duration
transitionDuration
;
const
CupertinoPopoverButton
({
const
CupertinoPopoverButton
({
@required
this
.
child
,
@required
this
.
child
,
@required
this
.
popoverBody
,
this
.
popoverBody
,
this
.
popoverBuild
,
this
.
popoverColor
=
Colors
.
white
,
this
.
popoverColor
=
Colors
.
white
,
@required
this
.
popoverWidth
,
@required
this
.
popoverWidth
,
@required
this
.
popoverHeight
,
@required
this
.
popoverHeight
,
this
.
transitionDuration
=
const
Duration
(
milliseconds:
200
),
this
.
transitionDuration
=
const
Duration
(
milliseconds:
200
),
this
.
radius
=
13.0
});
this
.
radius
=
8.0
}):
assert
(
popoverBody
!=
null
||
popoverBuild
!=
null
),
assert
(!(
popoverBody
!=
null
&&
popoverBuild
!=
null
));
@override
@override
...
@@ -24,26 +28,16 @@ class CupertinoPopoverButton extends StatelessWidget{
...
@@ -24,26 +28,16 @@ class CupertinoPopoverButton extends StatelessWidget{
return
GestureDetector
(
return
GestureDetector
(
behavior:
HitTestBehavior
.
translucent
,
behavior:
HitTestBehavior
.
translucent
,
onTap:
(){
onTap:
(){
var
offset
=
WidgetUtils
.
getWidgetLocalToGlobal
(
context
);
var
bounds
=
WidgetUtils
.
getWidgetBounds
(
context
);
var
body
=
popoverBody
;
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
);
final
ThemeData
theme
=
Theme
.
of
(
context
,
shadowThemeOnly:
true
);
var
offset
=
WidgetUtils
.
getWidgetLocalToGlobal
(
context
);
var
bounds
=
WidgetUtils
.
getWidgetBounds
(
context
);
final
Widget
pageChild
=
CupertinoPopover
(
transitionDuration:
transitionDuration
,
attachRect:
Rect
.
fromLTWH
(
offset
.
dx
,
offset
.
dy
,
bounds
.
width
,
bounds
.
height
),
child:
popoverBody
,
width:
popoverWidth
,
height:
popoverHeight
,
color:
popoverColor
,
context:
context
,
radius:
radius
,);
return
Builder
(
return
Builder
(
builder:
(
BuildContext
context
)
{
builder:
(
BuildContext
context
)
{
return
theme
!=
null
return
Container
();
?
Theme
(
data:
theme
,
child:
pageChild
)
:
pageChild
;
}
}
);
);
...
@@ -52,21 +46,31 @@ class CupertinoPopoverButton extends StatelessWidget{
...
@@ -52,21 +46,31 @@ class CupertinoPopoverButton extends StatelessWidget{
barrierLabel:
MaterialLocalizations
.
of
(
context
).
modalBarrierDismissLabel
,
barrierLabel:
MaterialLocalizations
.
of
(
context
).
modalBarrierDismissLabel
,
barrierColor:
Colors
.
black54
,
barrierColor:
Colors
.
black54
,
transitionDuration:
transitionDuration
,
transitionDuration:
transitionDuration
,
transitionBuilder:
_buildMaterialDialogTransitions
,);
transitionBuilder:
(
BuildContext
context
,
Animation
<
double
>
animation
,
Animation
<
double
>
secondaryAnimation
,
Widget
child
)
{
if
(
body
==
null
){
body
=
popoverBuild
(
context
);
}
return
FadeTransition
(
opacity:
CurvedAnimation
(
parent:
animation
,
curve:
Curves
.
easeOut
,
),
child:
CupertinoPopover
(
attachRect:
Rect
.
fromLTWH
(
offset
.
dx
,
offset
.
dy
,
bounds
.
width
,
bounds
.
height
),
child:
body
,
width:
popoverWidth
,
height:
popoverHeight
,
color:
popoverColor
,
context:
context
,
radius:
radius
,
doubleAnimation:
animation
,
),
);
},);
},
},
child:
child
,
child:
child
,
);
);
}
}
Widget
_buildMaterialDialogTransitions
(
BuildContext
context
,
Animation
<
double
>
animation
,
Animation
<
double
>
secondaryAnimation
,
Widget
child
)
{
return
FadeTransition
(
opacity:
CurvedAnimation
(
parent:
animation
,
curve:
Curves
.
easeOut
,
),
child:
child
,
);
}
}
}
...
@@ -77,7 +81,7 @@ class CupertinoPopover extends StatefulWidget {
...
@@ -77,7 +81,7 @@ class CupertinoPopover extends StatefulWidget {
final
double
height
;
final
double
height
;
final
Color
color
;
final
Color
color
;
final
double
radius
;
final
double
radius
;
final
Duration
transitionDur
ation
;
final
Animation
<
double
>
doubleAnim
ation
;
CupertinoPopover
({
CupertinoPopover
({
@required
this
.
attachRect
,
@required
this
.
attachRect
,
...
@@ -85,9 +89,9 @@ class CupertinoPopover extends StatefulWidget {
...
@@ -85,9 +89,9 @@ class CupertinoPopover extends StatefulWidget {
@required
this
.
width
,
@required
this
.
width
,
@required
this
.
height
,
@required
this
.
height
,
this
.
color
=
Colors
.
white
,
this
.
color
=
Colors
.
white
,
this
.
transitionDuration
=
const
Duration
(
milliseconds:
150
),
@required
BuildContext
context
,
@required
BuildContext
context
,
this
.
radius
=
13.0
}):
super
(){
this
.
doubleAnimation
,
this
.
radius
=
8.0
}):
super
(){
ScreenUtil
.
getInstance
().
init
(
context
);
ScreenUtil
.
getInstance
().
init
(
context
);
}
}
...
@@ -96,15 +100,15 @@ class CupertinoPopover extends StatefulWidget {
...
@@ -96,15 +100,15 @@ class CupertinoPopover extends StatefulWidget {
}
}
class
CupertinoPopoverState
extends
State
<
CupertinoPopover
>
with
TickerProviderStateMixin
{
class
CupertinoPopoverState
extends
State
<
CupertinoPopover
>
with
TickerProviderStateMixin
{
static
const
double
_arrowWidth
=
26
.0
;
static
const
double
_arrowWidth
=
12
.0
;
static
const
double
_arrowHeight
=
13
.0
;
static
const
double
_arrowHeight
=
8
.0
;
double
left
;
double
left
;
double
top
;
double
top
;
Rect
_arrowRect
;
Rect
_arrowRect
;
Rect
_bodyRect
;
Rect
_bodyRect
;
Animation
<
double
>
doubleAnimation
;
AnimationController
animation
;
//
AnimationController animation;
/// 是否箭头向上
/// 是否箭头向上
bool
isArrowUp
;
bool
isArrowUp
;
...
@@ -115,15 +119,15 @@ class CupertinoPopoverState extends State<CupertinoPopover> with TickerProvider
...
@@ -115,15 +119,15 @@ class CupertinoPopoverState extends State<CupertinoPopover> with TickerProvider
isArrowUp
=
ScreenUtil
.
screenHeight
>
widget
.
attachRect
.
bottom
+
widget
.
height
+
_arrowWidth
;
isArrowUp
=
ScreenUtil
.
screenHeight
>
widget
.
attachRect
.
bottom
+
widget
.
height
+
_arrowWidth
;
super
.
initState
();
super
.
initState
();
calcRect
();
calcRect
();
animation
=
new
AnimationController
(
//
animation = new AnimationController(
duration:
widget
.
transitionDuration
,
//
duration: widget.transitionDuration,
vsync:
this
//
vsync: this
);
//
);
// Tween({T begin, T end }):创建tween(补间)
//
// Tween({T begin, T end }):创建tween(补间)
doubleAnimation
=
new
Tween
<
double
>(
begin:
0.0
,
end:
1.0
).
animate
(
animation
)..
addListener
((){
//
doubleAnimation = new Tween<double>(begin: 0.0, end: 1.0).animate(animation)..addListener((){
setState
((){});
//
setState((){});
});
//
});
animation
.
forward
(
from:
0.0
);
//
animation.forward(from: 0.0);
}
}
@override
@override
...
@@ -131,7 +135,7 @@ class CupertinoPopoverState extends State<CupertinoPopover> with TickerProvider
...
@@ -131,7 +135,7 @@ class CupertinoPopoverState extends State<CupertinoPopover> with TickerProvider
var
bodyMiddleX
=
_bodyRect
.
left
+
_bodyRect
.
width
/
2
;
// 计算Body的X轴中间点
var
bodyMiddleX
=
_bodyRect
.
left
+
_bodyRect
.
width
/
2
;
// 计算Body的X轴中间点
var
arrowMiddleX
=
_arrowRect
.
left
+
_arrowRect
.
width
/
2
;
//计算箭头的X轴中间点
var
arrowMiddleX
=
_arrowRect
.
left
+
_arrowRect
.
width
/
2
;
//计算箭头的X轴中间点
var
leftOffset
=
(
arrowMiddleX
-
bodyMiddleX
)
*
(
1
-
doubleAnimation
.
value
);
//计算X轴缩小的偏移值
var
leftOffset
=
(
arrowMiddleX
-
bodyMiddleX
)
*
(
1
-
widget
.
doubleAnimation
.
value
);
//计算X轴缩小的偏移值
return
Stack
(
return
Stack
(
children:
<
Widget
>[
children:
<
Widget
>[
Positioned
(
Positioned
(
...
@@ -139,7 +143,7 @@ class CupertinoPopoverState extends State<CupertinoPopover> with TickerProvider
...
@@ -139,7 +143,7 @@ class CupertinoPopoverState extends State<CupertinoPopover> with TickerProvider
top:
top
,
top:
top
,
child:
ScaleTransition
(
child:
ScaleTransition
(
alignment:
isArrowUp
?
Alignment
.
topCenter
:
Alignment
.
bottomCenter
,
alignment:
isArrowUp
?
Alignment
.
topCenter
:
Alignment
.
bottomCenter
,
scale:
doubleAnimation
,
scale:
widget
.
doubleAnimation
,
child:
ClipPath
(
child:
ClipPath
(
clipper:
ArrowCliper
(
clipper:
ArrowCliper
(
arrowRect:
_arrowRect
,
arrowRect:
_arrowRect
,
...
...
lib/popover/cupertino_popover_menu_item.dart
浏览文件 @
060afb58
import
'package:flutter/material.dart'
;
part of
cool_ui
;
class
CupertinoPopoverMenuList
extends
StatelessWidget
{
final
List
<
Widget
>
children
;
const
CupertinoPopoverMenuList
({
this
.
children
});
@override
Widget
build
(
BuildContext
context
)
{
return
ListView
.
builder
(
itemCount:
children
.
length
*
2
-
1
,
itemBuilder:
(
context
,
int
i
){
if
(
i
.
isOdd
){
// 在每一列之前,添加一个1像素高的分隔线widget
return
const
Divider
(
height:
1.0
,);
}
final
int
index
=
i
~/
2
;
return
children
[
index
];
},
padding:
EdgeInsets
.
all
(
0.0
),
);
}
}
class
CupertinoPopoverMenuItem
extends
StatelessWidget
{
class
CupertinoPopoverMenuItem
extends
StatelessWidget
{
final
Widget
leading
;
final
Widget
leading
;
...
@@ -10,7 +34,29 @@ class CupertinoPopoverMenuItem extends StatelessWidget{
...
@@ -10,7 +34,29 @@ class CupertinoPopoverMenuItem extends StatelessWidget{
@override
@override
Widget
build
(
BuildContext
context
)
{
Widget
build
(
BuildContext
context
)
{
// TODO: implement build
List
<
Widget
>
widgets
=
[];
if
(
leading
!=
null
){
widgets
.
add
(
Container
(
padding:
EdgeInsets
.
only
(
left:
5.0
,
right:
5.0
),
width:
35.0
,
height:
35.0
,
child:
IconTheme
(
data:
IconThemeData
(
color:
Color
(
0xff007aff
),
size:
20.0
),
child:
leading
),
));
}
widgets
.
add
(
Expanded
(
child:
DefaultTextStyle
(
style:
TextStyle
(
color:
Color
(
0xff007aff
),
fontSize:
17.0
),
child:
child
)));
return
Padding
(
padding:
EdgeInsets
.
only
(
top:
2.5
,
bottom:
2.5
),
child:
Row
(
children:
widgets
),
);
}
}
}
}
\ No newline at end of file
pubspec.yaml
浏览文件 @
060afb58
name
:
cool_ui
name
:
cool_ui
description
:
用flutter实现一些我认为好看的UI控件
description
:
用flutter实现一些我认为好看的UI控件
version
:
0.0.
8
version
:
0.0.
9
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
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论