Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
bf073604
提交
bf073604
authored
11月 04, 2018
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
更改了onTap事件
上级
e4f0bbb5
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
18 行增加
和
16 行删除
+18
-16
CHANGELOG.md
CHANGELOG.md
+4
-0
README.md
README.md
+4
-2
cupertino_popover.dart
lib/widgets/popover/cupertino_popover.dart
+6
-10
cupertino_popover_menu_item.dart
lib/widgets/popover/cupertino_popover_menu_item.dart
+3
-3
pubspec.yaml
pubspec.yaml
+1
-1
没有找到文件。
CHANGELOG.md
浏览文件 @
bf073604
## [0.1.4] - TODO:修改了onTap事件
*
TODO: CupertionPopoverButton添加了onTap事件,返回True不打开Popover
*
TODO: CupertinoPopoverMenuItem修改了onTap事件,返回True不关闭Popover
## [0.1.1] - TODO:添加了WeuiToast效果,完善了文档信息
*
TODO: 添加了WeuiToast效果
*
TODO: 完善了文档信息
...
...
README.md
浏览文件 @
bf073604
...
...
@@ -6,7 +6,7 @@ Usage
Add this to your package's pubspec.yaml file:
```
yaml
dependencies
:
cool_ui
:
"
^0.1.
1
"
cool_ui
:
"
^0.1.
4
"
```
# 控件
...
...
@@ -30,6 +30,7 @@ CupertinoPopoverButton({
this
.
popoverColor
=
Colors
.
white
,
@required
this
.
popoverWidth
,
@required
this
.
popoverHeight
,
this
.
onTap
,
this
.
transitionDuration
=
const
Duration
(
milliseconds:
200
),
this
.
radius
=
8.0
});
```
...
...
@@ -41,6 +42,7 @@ CupertinoPopoverButton({
| popoverBuild |
<code>
WidgetBuilder
</code>
| | 生成弹出框的内容 |
| popoverWidth |
<code>
double
</code>
| | 弹出框的宽度 |
| popoverHeight |
<code>
double
</code>
| | 弹出框的高度 |
|
[
onTap
]
|
<code>
BoolCallback
</code>
| | 按钮点击事件,返回true取消默认反应(不打开Popover) |
|
[
popoverColor
]
|
<code>
Color
</code>
| 白色 | 弹出框的背景颜色 |
|
[
transitionDuration
]
|
<code>
Duration
</code>
| 0.2s | 过度动画时间 |
|
[
radius
]
|
<code>
double
</code>
| 8.0 | 弹出框的圆角弧度 |
...
...
@@ -99,7 +101,7 @@ const CupertinoPopoverMenuItem({
| --- | --- | --- |
|
[
leading
]
|
<code>
Widget
<Widget></code>
| 菜单左边,一般放图标 |
|
[
child
]
|
<code>
Widget
<Widget></code>
| 菜单内容 |
|
[
onTap
]
|
<code>
VoidCallback
<Widget></code>
|菜单点击事件
|
|
[
onTap
]
|
<code>
BoolCallback
</code>
| | 按钮点击事件,返回true取消默认反应(不关闭Popover)
|
|
[
isTapClosePopover
]
|
<code>
bool
<Widget></code>
| 是否点击关闭 |
#### 案例核心代码
...
...
lib/widgets/popover/cupertino_popover.dart
浏览文件 @
bf073604
part of
cool_ui
;
typedef
BoolCallback
=
bool
Function
();
class
CupertinoPopoverButton
extends
StatelessWidget
{
final
Widget
child
;
final
Widget
popoverBody
;
...
...
@@ -9,9 +10,9 @@ class CupertinoPopoverButton extends StatelessWidget{
final
Color
popoverColor
;
final
double
radius
;
final
Duration
transitionDuration
;
final
BoolCallback
onTap
;
const
CupertinoPopoverButton
({
@required
this
.
child
,
@Deprecated
(
'建议不要直接使用popoverBody,而是使用popoverBuild.'
)
...
...
@@ -20,6 +21,7 @@ class CupertinoPopoverButton extends StatelessWidget{
this
.
popoverColor
=
Colors
.
white
,
@required
this
.
popoverWidth
,
@required
this
.
popoverHeight
,
this
.
onTap
,
this
.
transitionDuration
=
const
Duration
(
milliseconds:
200
),
this
.
radius
=
8.0
}):
assert
(
popoverBody
!=
null
||
popoverBuild
!=
null
),
...
...
@@ -32,6 +34,9 @@ class CupertinoPopoverButton extends StatelessWidget{
return
GestureDetector
(
behavior:
HitTestBehavior
.
translucent
,
onTap:
(){
if
(
onTap
!=
null
&&
onTap
()){
return
;
}
var
offset
=
WidgetUtil
.
getWidgetLocalToGlobal
(
context
);
var
bounds
=
WidgetUtil
.
getWidgetBounds
(
context
);
var
body
=
popoverBody
;
...
...
@@ -122,15 +127,6 @@ class CupertinoPopoverState extends State<CupertinoPopover> with TickerProvider
isArrowUp
=
ScreenUtil
.
screenHeight
>
widget
.
attachRect
.
bottom
+
widget
.
height
+
_arrowWidth
;
super
.
initState
();
calcRect
();
// animation = new AnimationController(
// duration: widget.transitionDuration,
// vsync: this
// );
// // Tween({T begin, T end }):创建tween(补间)
// doubleAnimation = new Tween<double>(begin: 0.0, end: 1.0).animate(animation)..addListener((){
// setState((){});
// });
// animation.forward(from: 0.0);
}
@override
...
...
lib/widgets/popover/cupertino_popover_menu_item.dart
浏览文件 @
bf073604
...
...
@@ -27,7 +27,7 @@ class CupertinoPopoverMenuList extends StatelessWidget{
class
CupertinoPopoverMenuItem
extends
StatefulWidget
{
final
Widget
leading
;
final
Widget
child
;
final
Void
Callback
onTap
;
final
Bool
Callback
onTap
;
final
bool
isTapClosePopover
;
const
CupertinoPopoverMenuItem
({
...
...
@@ -73,8 +73,8 @@ class CupertinoPopoverMenuItemState extends State<CupertinoPopoverMenuItem>{
setState
(()
{
isDown
=
false
;
});
if
(
widget
.
onTap
!=
null
){
widget
.
onTap
()
;
if
(
widget
.
onTap
!=
null
&&
widget
.
onTap
()
){
return
;
}
if
(
widget
.
isTapClosePopover
){
Navigator
.
of
(
context
).
pop
();
...
...
pubspec.yaml
浏览文件 @
bf073604
name
:
cool_ui
description
:
用flutter实现一些我认为好看的UI控件,目前暂时只有Popover,Weui,不过有什么觉得好看的可以提Issue
version
:
0.1.
3
version
:
0.1.
4
author
:
Kevin <liangkaikevin@gmail.com>
homepage
:
https://github.com/Im-Kevin/cool_ui
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论