Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
6f8911ed
提交
6f8911ed
authored
5月 24, 2020
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
升级0.5.5
上级
6c5b50a9
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
180 行增加
和
72 行删除
+180
-72
CHANGELOG.md
CHANGELOG.md
+4
-0
popover.md
documents/popover.md
+8
-0
popover_demo.dart
example/lib/pages/popover_demo.dart
+4
-0
cupertino_popover.dart
lib/widgets/popover/cupertino_popover.dart
+118
-21
cupertino_popover_menu_item.dart
lib/widgets/popover/cupertino_popover_menu_item.dart
+45
-50
pubspec.yaml
pubspec.yaml
+1
-1
没有找到文件。
CHANGELOG.md
浏览文件 @
6f8911ed
## [0.5.5]
*
TODO: Popover添加了阴影效果
*
TODO: Popover 添加了方向
## [0.5.4]
*
TODO: Fix Bug Issues:47
...
...
documents/popover.md
浏览文件 @
6f8911ed
...
...
@@ -8,9 +8,11 @@ CupertinoPopoverButton({
this
.
child
,
this
.
popoverBuild
,
this
.
popoverColor
=
Colors
.
white
,
this
.
popoverBoxShadow
,
@required
this
.
popoverWidth
,
@required
this
.
popoverHeight
,
BoxConstraints
popoverConstraints
,
this
.
direction
=
CupertinoPopoverDirection
.
bottom
,
this
.
onTap
,
this
.
transitionDuration
=
const
Duration
(
milliseconds:
200
),
this
.
barrierColor
=
Colors
.
black54
,
...
...
@@ -25,8 +27,10 @@ CupertinoPopoverButton({
|
[
popoverWidth
]
|
<code>
double
</code>
| | 弹出框的宽度 |
|
[
popoverHeight
]
|
<code>
double
</code>
| | 弹出框的高度 |
|
[
popoverConstraints
]
|
<code>
BoxConstraints
</code>
| maxHeight:123.0 maxWidth:150.0 | 弹出框的最大最小高宽|
|
[
direction
]
|
<code>
CupertinoPopoverDirection
</code>
| CupertinoPopoverDirection.bottom | 方向|
|
[
onTap
]
|
<code>
BoolCallback
</code>
| | 按钮点击事件,返回true取消默认反应(不打开Popover) |
|
[
popoverColor
]
|
<code>
Color
</code>
| 白色 | 弹出框的背景颜色 |
|
[
popoverBoxShadow
]
|
<code>
BoxShadow
</code>
| | 弹出框的阴影 |
|
[
barrierColor
]
|
<code>
Color
</code>
| Colors.black54 | 遮罩层的颜色,目前不允许设置透明,如需要透明则使用Color.fromRGBO(0, 0, 0, 0.01)可达到类似效果|
|
[
transitionDuration
]
|
<code>
Duration
</code>
| 0.2s | 过度动画时间 |
|
[
radius
]
|
<code>
double
</code>
| 8.0 | 弹出框的圆角弧度 |
...
...
@@ -77,6 +81,8 @@ const CupertinoPopoverMenuItem({
this
.
leading
,
this
.
child
,
this
.
onTap
,
this
.
background
=
Colors
.
white
,
this
.
activeBackground
=
const
Color
(
0xFFd9d9d9
),
this
.
isTapClosePopover
=
true
});
```
...
...
@@ -85,6 +91,8 @@ const CupertinoPopoverMenuItem({
|
[
leading
]
|
<code>
Widget
<Widget></code>
| 菜单左边,一般放图标 |
|
[
child
]
|
<code>
Widget
<Widget></code>
| 菜单内容 |
|
[
onTap
]
|
<code>
BoolCallback
</code>
| | 按钮点击事件,返回true取消默认反应(不关闭Popover) |
|
[
activeBackground
]
|
<code>
Color
</code>
| Color(0xFFd9d9d9) | 按下时背景色 |
|
[
background
]
|
<code>
Color
</code>
| Colors.white | 默认背景色 |
|
[
isTapClosePopover
]
|
<code>
bool
<Widget></code>
| 是否点击关闭 |
#### 案例核心代码
...
...
example/lib/pages/popover_demo.dart
浏览文件 @
6f8911ed
...
...
@@ -60,6 +60,10 @@ class PopoverDemoState extends State<PopoverDemo>{
return
Padding
(
padding:
EdgeInsets
.
all
(
20.0
),
child:
CupertinoPopoverButton
(
popoverBoxShadow:
[
BoxShadow
(
color:
Colors
.
black12
,
blurRadius:
5.0
)
],
barrierColor:
Color
(
0x01FFFFFF
),
child:
Container
(
width:
80.0
,
height:
40.0
,
...
...
lib/widgets/popover/cupertino_popover.dart
浏览文件 @
6f8911ed
part of
cool_ui
;
enum
CupertinoPopoverDirection
{
top
,
bottom
,
}
typedef
BoolCallback
=
bool
Function
();
class
CupertinoPopoverButton
extends
StatelessWidget
{
final
Widget
child
;
...
...
@@ -7,19 +12,23 @@ class CupertinoPopoverButton extends StatelessWidget{
final
double
popoverWidth
;
final
double
popoverHeight
;
final
Color
popoverColor
;
final
List
<
BoxShadow
>
popoverBoxShadow
;
final
double
radius
;
final
Duration
transitionDuration
;
final
BoolCallback
onTap
;
final
BoxConstraints
popoverConstraints
;
final
Color
barrierColor
;
final
CupertinoPopoverDirection
direction
;
CupertinoPopoverButton
({
@required
this
.
child
,
this
.
popoverBuild
,
this
.
popoverColor
=
Colors
.
white
,
this
.
popoverBoxShadow
,
this
.
popoverWidth
,
this
.
popoverHeight
,
BoxConstraints
popoverConstraints
,
this
.
direction
=
CupertinoPopoverDirection
.
bottom
,
this
.
onTap
,
this
.
transitionDuration
=
const
Duration
(
milliseconds:
200
),
this
.
barrierColor
=
Colors
.
black54
,
...
...
@@ -72,9 +81,11 @@ class CupertinoPopoverButton extends StatelessWidget{
child:
body
,
constraints:
popoverConstraints
,
color:
popoverColor
,
boxShadow:
popoverBoxShadow
,
context:
context
,
radius:
radius
,
doubleAnimation:
animation
,
direction:
direction
,
),
);
},);
...
...
@@ -89,7 +100,9 @@ class CupertinoPopover extends StatefulWidget {
final
Rect
attachRect
;
final
Widget
child
;
final
Color
color
;
final
List
<
BoxShadow
>
boxShadow
;
final
double
radius
;
final
CupertinoPopoverDirection
direction
;
final
Animation
<
double
>
doubleAnimation
;
BoxConstraints
constraints
;
...
...
@@ -98,7 +111,9 @@ class CupertinoPopover extends StatefulWidget {
@required
this
.
child
,
BoxConstraints
constraints
,
this
.
color
=
Colors
.
white
,
this
.
boxShadow
,
@required
BuildContext
context
,
this
.
direction
=
CupertinoPopoverDirection
.
bottom
,
this
.
doubleAnimation
,
this
.
radius
=
8.0
}):
super
(){
BoxConstraints
temp
;
...
...
@@ -150,12 +165,15 @@ class CupertinoPopoverState extends State<CupertinoPopover> with TickerProvider
attachRect:
widget
.
attachRect
,
scale:
widget
.
doubleAnimation
,
constraints:
widget
.
constraints
,
direction:
widget
.
direction
,
child:
_CupertionPopoverContext
(
attachRect:
widget
.
attachRect
,
scale:
widget
.
doubleAnimation
,
radius:
widget
.
radius
,
color:
widget
.
color
,
child:
Material
(
child:
widget
.
child
),
boxShadow:
widget
.
boxShadow
,
direction:
widget
.
direction
,
child:
Material
(
type:
MaterialType
.
transparency
,
child:
widget
.
child
),
),
)
],
...
...
@@ -169,12 +187,14 @@ class _CupertionPopoverPosition extends SingleChildRenderObjectWidget{
final
Rect
attachRect
;
final
Animation
<
double
>
scale
;
final
BoxConstraints
constraints
;
final
CupertinoPopoverDirection
direction
;
_CupertionPopoverPosition
({
Widget
child
,
this
.
attachRect
,
this
.
constraints
,
this
.
scale
}):
super
(
child:
child
);
_CupertionPopoverPosition
({
Widget
child
,
this
.
attachRect
,
this
.
constraints
,
this
.
scale
,
this
.
direction
}):
super
(
child:
child
);
@override
RenderObject
createRenderObject
(
BuildContext
context
)
=>
_CupertionPopoverPositionRenderObject
(
attachRect:
attachRect
,
direction:
direction
,
constraints:
constraints
);
...
...
@@ -182,6 +202,7 @@ class _CupertionPopoverPosition extends SingleChildRenderObjectWidget{
void
updateRenderObject
(
BuildContext
context
,
_CupertionPopoverPositionRenderObject
renderObject
)
{
renderObject
..
attachRect
=
attachRect
..
direction
=
direction
..
additionalConstraints
=
constraints
;
}
...
...
@@ -194,6 +215,16 @@ class _CupertionPopoverPosition extends SingleChildRenderObjectWidget{
}
class
_CupertionPopoverPositionRenderObject
extends
RenderShiftedBox
{
CupertinoPopoverDirection
get
direction
=>
_direction
;
CupertinoPopoverDirection
_direction
;
set
direction
(
CupertinoPopoverDirection
value
)
{
if
(
_direction
==
value
)
return
;
_direction
=
value
;
markNeedsLayout
();
}
Rect
get
attachRect
=>
_attachRect
;
Rect
_attachRect
;
set
attachRect
(
Rect
value
)
{
...
...
@@ -215,9 +246,10 @@ class _CupertionPopoverPositionRenderObject extends RenderShiftedBox{
}
_CupertionPopoverPositionRenderObject
({
RenderBox
child
,
Rect
attachRect
,
Color
color
,
BoxConstraints
constraints
,
Animation
<
double
>
scale
})
:
super
(
child
){
_CupertionPopoverPositionRenderObject
({
RenderBox
child
,
Rect
attachRect
,
Color
color
,
BoxConstraints
constraints
,
Animation
<
double
>
scale
,
CupertinoPopoverDirection
direction
})
:
super
(
child
){
this
.
_attachRect
=
attachRect
;
this
.
_additionalConstraints
=
constraints
;
this
.
_direction
=
direction
;
}
...
...
@@ -233,8 +265,8 @@ class _CupertionPopoverPositionRenderObject extends RenderShiftedBox{
Offset
calcOffset
(
Size
size
){
double
bodyLeft
=
0.0
;
var
isArrowUp
=
_ScreenUtil
.
getInstance
().
screenHeight
>
attachRect
.
bottom
+
size
.
height
+
CupertinoPopoverState
.
_arrowHeight
;
CupertinoPopoverDirection
calcDirection
=
_calcDirection
(
attachRect
,
size
,
direction
);
if
(
attachRect
.
left
>
size
.
width
/
2
&&
_ScreenUtil
.
getInstance
().
screenWidth
-
attachRect
.
right
>
size
.
width
/
2
){
//判断是否可以在中间
...
...
@@ -245,7 +277,7 @@ class _CupertionPopoverPositionRenderObject extends RenderShiftedBox{
bodyLeft
=
_ScreenUtil
.
getInstance
().
screenWidth
-
10.0
-
size
.
width
;
}
if
(
isArrowUp
){
if
(
calcDirection
==
CupertinoPopoverDirection
.
bottom
){
return
Offset
(
bodyLeft
,
attachRect
.
bottom
);
}
else
{
return
Offset
(
bodyLeft
,
attachRect
.
top
-
size
.
height
-
CupertinoPopoverState
.
_arrowHeight
);
...
...
@@ -263,15 +295,19 @@ class _CupertionPopoverPositionRenderObject extends RenderShiftedBox{
class
_CupertionPopoverContext
extends
SingleChildRenderObjectWidget
{
final
Rect
attachRect
;
final
Color
color
;
final
List
<
BoxShadow
>
boxShadow
;
final
Animation
<
double
>
scale
;
final
double
radius
;
_CupertionPopoverContext
({
Widget
child
,
this
.
attachRect
,
this
.
color
,
this
.
scale
,
this
.
radius
}):
super
(
child:
child
);
final
CupertinoPopoverDirection
direction
;
_CupertionPopoverContext
({
Widget
child
,
this
.
attachRect
,
this
.
color
,
this
.
boxShadow
,
this
.
scale
,
this
.
radius
,
this
.
direction
}):
super
(
child:
child
);
@override
RenderObject
createRenderObject
(
BuildContext
context
)
=>
_CupertionPopoverContextRenderObject
(
attachRect:
attachRect
,
color:
color
,
scale:
scale
,
boxShadow:
boxShadow
,
scale:
scale
.
value
,
direction:
direction
,
radius:
radius
);
...
...
@@ -281,13 +317,25 @@ class _CupertionPopoverContext extends SingleChildRenderObjectWidget{
renderObject
..
attachRect
=
attachRect
..
color
=
color
..
scale
=
scale
..
boxShadow
=
boxShadow
..
scale
=
scale
.
value
..
direction
=
direction
..
radius
=
radius
;
}
}
class
_CupertionPopoverContextRenderObject
extends
RenderShiftedBox
{
CupertinoPopoverDirection
get
direction
=>
_direction
;
CupertinoPopoverDirection
_direction
;
set
direction
(
CupertinoPopoverDirection
value
)
{
if
(
_direction
==
value
)
return
;
_direction
=
value
;
markNeedsLayout
();
}
Rect
get
attachRect
=>
_attachRect
;
Rect
_attachRect
;
set
attachRect
(
Rect
value
)
{
...
...
@@ -307,12 +355,22 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox{
markNeedsLayout
();
}
Animation
<
double
>
get
scale
=>
_scale
;
Animation
<
double
>
_scale
;
set
scale
(
Animation
<
double
>
value
)
{
if
(
_scale
==
value
)
List
<
BoxShadow
>
get
boxShadow
=>
_boxShadow
;
List
<
BoxShadow
>
_boxShadow
;
set
boxShadow
(
List
<
BoxShadow
>
value
)
{
if
(
_boxShadow
==
value
)
return
;
_boxShadow
=
value
;
markNeedsLayout
();
}
double
get
scale
=>
_scale
;
double
_scale
;
set
scale
(
double
value
)
{
// print('scale:${_scale.value}');
// if (_scale == value)
// return;
_scale
=
value
;
markNeedsLayout
();
}
...
...
@@ -328,11 +386,13 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox{
}
_CupertionPopoverContextRenderObject
({
RenderBox
child
,
Rect
attachRect
,
Color
color
,
Animation
<
double
>
scale
,
double
radius
})
:
super
(
child
){
_CupertionPopoverContextRenderObject
({
RenderBox
child
,
Rect
attachRect
,
Color
color
,
List
<
BoxShadow
>
boxShadow
,
double
scale
,
double
radius
,
CupertinoPopoverDirection
direction
})
:
super
(
child
){
this
.
_attachRect
=
attachRect
;
this
.
_color
=
color
;
this
.
_boxShadow
=
boxShadow
;
this
.
_scale
=
scale
;
this
.
_radius
=
radius
;
this
.
_direction
=
direction
;
}
...
...
@@ -344,8 +404,8 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox{
child
.
layout
(
childConstraints
,
parentUsesSize:
true
);
size
=
Size
(
child
.
size
.
width
,
child
.
size
.
height
+
CupertinoPopoverState
.
_arrowHeight
);
final
BoxParentData
childParentData
=
child
.
parentData
;
var
isArrowUp
=
_ScreenUtil
.
getInstance
().
screenHeight
>
attachRect
.
bottom
+
size
.
height
+
CupertinoPopoverState
.
_arrowHeight
;
if
(
isArrowUp
)
CupertinoPopoverDirection
calcDirection
=
_calcDirection
(
attachRect
,
size
,
direction
);
if
(
calcDirection
==
CupertinoPopoverDirection
.
bottom
)
{
childParentData
.
offset
=
Offset
(
0.0
,
CupertinoPopoverState
.
_arrowHeight
);
}
...
...
@@ -356,12 +416,14 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox{
// TODO: implement paint
Matrix4
transform
=
Matrix4
.
identity
();
//
var
isArrowUp
=
_ScreenUtil
.
getInstance
().
screenHeight
>
attachRect
.
bottom
+
size
.
height
+
CupertinoPopoverState
.
_arrowHeight
;
CupertinoPopoverDirection
calcDirection
=
_calcDirection
(
attachRect
,
size
,
direction
);
var
isArrowUp
=
calcDirection
==
CupertinoPopoverDirection
.
bottom
;
var
arrowLeft
=
attachRect
.
left
+
attachRect
.
width
/
2
-
CupertinoPopoverState
.
_arrowWidth
/
2
-
offset
.
dx
;
var
translation
=
Offset
(
arrowLeft
+
CupertinoPopoverState
.
_arrowWidth
/
2
,
isArrowUp
?
0.0
:
size
.
height
);
transform
.
translate
(
translation
.
dx
,
translation
.
dy
);
transform
.
scale
(
scale
.
value
,
scale
.
valu
e
,
1.0
);
transform
.
scale
(
scale
,
scal
e
,
1.0
);
transform
.
translate
(-
translation
.
dx
,
-
translation
.
dy
);
Rect
arrowRect
=
Rect
.
fromLTWH
(
arrowLeft
,
...
...
@@ -370,20 +432,40 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox{
CupertinoPopoverState
.
_arrowHeight
);
Rect
bodyRect
=
Offset
(
0.0
,
isArrowUp
?
CupertinoPopoverState
.
_arrowHeight
:
0.0
)
&
child
.
size
;
_paintShadows
(
context
,
transform
,
offset
,
isArrowUp
,
arrowRect
,
bodyRect
);
Path
clipPath
=
_getClip
(
isArrowUp
,
arrowRect
,
bodyRect
);
context
.
pushClipPath
(
needsCompositing
,
offset
,
offset
&
size
,
getClip
(
size
,
isArrowUp
,
arrowRect
,
bodyRect
)
,(
context
,
offset
){
clipPath
,(
context
,
offset
){
context
.
pushTransform
(
needsCompositing
,
offset
,
transform
,(
context
,
offset
){
final
Paint
backgroundPaint
=
Paint
();
backgroundPaint
.
color
=
color
;
context
.
canvas
.
drawRect
(
offset
&
size
,
backgroundPaint
);
super
.
paint
(
context
,
offset
);
});
});
}
Path
getClip
(
Size
size
,
bool
isArrowUp
,
Rect
arrowRect
,
Rect
bodyRect
)
{
void
_paintShadows
(
PaintingContext
context
,
Matrix4
transform
,
Offset
offset
,
bool
isArrowUp
,
Rect
arrowRect
,
Rect
bodyRect
)
{
if
(
boxShadow
==
null
)
return
;
for
(
final
BoxShadow
boxShadow
in
boxShadow
)
{
final
Paint
paint
=
boxShadow
.
toPaint
();
arrowRect
=
arrowRect
.
shift
(
offset
).
shift
(
boxShadow
.
offset
).
inflate
(
boxShadow
.
spreadRadius
);
bodyRect
=
bodyRect
.
shift
(
offset
).
shift
(
boxShadow
.
offset
).
inflate
(
boxShadow
.
spreadRadius
);
Path
path
=
_getClip
(
isArrowUp
,
arrowRect
,
bodyRect
);
context
.
pushTransform
(
needsCompositing
,
offset
,
transform
,(
context
,
offset
){
context
.
canvas
.
drawPath
(
path
,
paint
);
});
}
}
Path
_getClip
(
bool
isArrowUp
,
Rect
arrowRect
,
Rect
bodyRect
)
{
Path
path
=
new
Path
();
if
(
isArrowUp
)
...
...
@@ -437,4 +519,18 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox{
path
.
close
();
return
path
;
}
}
CupertinoPopoverDirection
_calcDirection
(
Rect
attachRect
,
Size
size
,
CupertinoPopoverDirection
direction
)
{
bool
isArrowUp
;
switch
(
direction
){
case
CupertinoPopoverDirection
.
top
:
isArrowUp
=
attachRect
.
top
<
size
.
height
+
CupertinoPopoverState
.
_arrowHeight
;
// 判断顶部位置够不够
break
;
case
CupertinoPopoverDirection
.
bottom
:
isArrowUp
=
_ScreenUtil
.
getInstance
().
screenHeight
>
attachRect
.
bottom
+
size
.
height
+
CupertinoPopoverState
.
_arrowHeight
;
break
;
}
return
isArrowUp
?
CupertinoPopoverDirection
.
bottom
:
CupertinoPopoverDirection
.
top
;
}
\ No newline at end of file
lib/widgets/popover/cupertino_popover_menu_item.dart
浏览文件 @
6f8911ed
part of
cool_ui
;
class
CupertinoPopoverMenuList
extends
StatelessWidget
{
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
,
shrinkWrap:
true
,
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
),
itemCount:
children
.
length
*
2
-
1
,
shrinkWrap:
true
,
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
StatefulWidget
{
class
CupertinoPopoverMenuItem
extends
StatefulWidget
{
final
Widget
leading
;
final
Widget
child
;
final
BoolCallback
onTap
;
final
bool
isTapClosePopover
;
final
Color
activeBackground
;
final
Color
background
;
const
CupertinoPopoverMenuItem
({
this
.
leading
,
this
.
child
,
this
.
onTap
,
this
.
isTapClosePopover
=
true
});
const
CupertinoPopoverMenuItem
(
{
this
.
leading
,
this
.
child
,
this
.
onTap
,
this
.
background
=
Colors
.
white
,
this
.
activeBackground
=
const
Color
(
0xFFd9d9d9
),
this
.
isTapClosePopover
=
true
});
@override
State
<
StatefulWidget
>
createState
()
=>
CupertinoPopoverMenuItemState
();
State
<
StatefulWidget
>
createState
()
=>
CupertinoPopoverMenuItemState
();
}
class
CupertinoPopoverMenuItemState
extends
State
<
CupertinoPopoverMenuItem
>{
class
CupertinoPopoverMenuItemState
extends
State
<
CupertinoPopoverMenuItem
>
{
bool
isDown
=
false
;
@override
Widget
build
(
BuildContext
context
)
{
List
<
Widget
>
widgets
=
[];
if
(
widget
.
leading
!=
null
)
{
if
(
widget
.
leading
!=
null
)
{
widgets
.
add
(
Container
(
padding:
EdgeInsets
.
only
(
left:
5.0
,
right:
5.0
),
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:
widget
.
leading
),
data:
IconThemeData
(
color:
Color
(
0xff007aff
),
size:
20.0
),
child:
widget
.
leading
),
));
}
widgets
.
add
(
Expanded
(
child:
DefaultTextStyle
(
style:
TextStyle
(
c
olor:
Color
(
0xff007aff
),
fontSize:
17.0
),
child:
widget
.
child
)));
widgets
.
add
(
Expanded
(
c
hild:
DefaultTextStyle
(
style:
TextStyle
(
color:
Color
(
0xff007aff
),
fontSize:
17.0
),
child:
widget
.
child
)));
return
GestureDetector
(
onTapDown:
(
detail
){
onTapDown:
(
detail
)
{
setState
(()
{
isDown
=
true
;
});
},
onTapUp:
(
detail
){
if
(
isDown
)
{
onTapUp:
(
detail
)
{
if
(
isDown
)
{
setState
(()
{
isDown
=
false
;
});
if
(
widget
.
onTap
!=
null
&&
widget
.
onTap
())
{
if
(
widget
.
onTap
!=
null
&&
widget
.
onTap
())
{
return
;
}
if
(
widget
.
isTapClosePopover
)
{
if
(
widget
.
isTapClosePopover
)
{
Navigator
.
of
(
context
).
pop
();
}
}
},
onTapCancel:
(){
if
(
isDown
)
{
onTapCancel:
()
{
if
(
isDown
)
{
setState
(()
{
isDown
=
false
;
});
}
},
child:
Container
(
color:
isDown
?
Color
(
0xFFd9d9d9
):
Colors
.
white
,
color:
isDown
?
widget
.
activeBackground
:
widget
.
background
,
child:
Padding
(
padding:
EdgeInsets
.
only
(
top:
2.5
,
bottom:
2.5
),
child:
Row
(
children:
widgets
),
padding:
EdgeInsets
.
only
(
top:
2.5
,
bottom:
2.5
),
child:
Row
(
children:
widgets
),
),
),
);
}
}
\ No newline at end of file
}
pubspec.yaml
浏览文件 @
6f8911ed
name
:
cool_ui
description
:
Some practical Widget for flutter,Popover,Weui,Custom Keyboard
version
:
0.5.
4
version
:
0.5.
5
author
:
Kevin <liangkaikevin@gmail.com>
homepage
:
https://github.com/Im-Kevin/cool_ui
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论