Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
7fd8f603
提交
7fd8f603
authored
11月 06, 2018
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
CupertionPopoverButton添加了CupertionPopoverButton参数,用于设置最大最小宽度,取消必填的高宽
上级
afcfaa1a
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
24 行增加
和
28 行删除
+24
-28
CHANGELOG.md
CHANGELOG.md
+3
-0
README.md
README.md
+6
-6
popover_demo.dart
example/lib/pages/popover_demo.dart
+2
-4
cupertino_popover.dart
lib/widgets/popover/cupertino_popover.dart
+0
-0
cupertino_popover_menu_item.dart
lib/widgets/popover/cupertino_popover_menu_item.dart
+12
-10
pubspec.lock
pubspec.lock
+0
-7
pubspec.yaml
pubspec.yaml
+1
-1
没有找到文件。
CHANGELOG.md
浏览文件 @
7fd8f603
## [0.1.5] - TODO:添加了popoverConstraints参数
*
TODO: CupertionPopoverButton添加了CupertionPopoverButton参数,用于设置最大最小宽度,取消必填的高宽
## [0.1.4] - TODO:修改了onTap事件
*
TODO: CupertionPopoverButton添加了onTap事件,返回True不打开Popover
*
TODO: CupertinoPopoverMenuItem修改了onTap事件,返回True不关闭Popover
...
...
README.md
浏览文件 @
7fd8f603
...
...
@@ -7,7 +7,7 @@ Usage
Add this to your package's pubspec.yaml file:
```
yaml
dependencies
:
cool_ui
:
"
^0.1.
4
"
cool_ui
:
"
^0.1.
5
"
```
# 控件
...
...
@@ -31,6 +31,7 @@ CupertinoPopoverButton({
this
.
popoverColor
=
Colors
.
white
,
@required
this
.
popoverWidth
,
@required
this
.
popoverHeight
,
BoxConstraints
popoverConstraints
,
this
.
onTap
,
this
.
transitionDuration
=
const
Duration
(
milliseconds:
200
),
this
.
radius
=
8.0
});
...
...
@@ -41,8 +42,9 @@ CupertinoPopoverButton({
| --- | --- | --- | --- |
| child |
<code>
Widget
</code>
| | 按钮的内容 |
| popoverBuild |
<code>
WidgetBuilder
</code>
| | 生成弹出框的内容 |
| popoverWidth |
<code>
double
</code>
| | 弹出框的宽度 |
| popoverHeight |
<code>
double
</code>
| | 弹出框的高度 |
|
[
popoverWidth
]
|
<code>
double
</code>
| | 弹出框的宽度 |
|
[
popoverHeight
]
|
<code>
double
</code>
| | 弹出框的高度 |
|
[
popoverConstraints
]
|
<code>
BoxConstraints
</code>
| maxHeight:123.0 maxWidth:150.0 | 弹出框的最大最小高宽|
|
[
onTap
]
|
<code>
BoolCallback
</code>
| | 按钮点击事件,返回true取消默认反应(不打开Popover) |
|
[
popoverColor
]
|
<code>
Color
</code>
| 白色 | 弹出框的背景颜色 |
|
[
transitionDuration
]
|
<code>
Duration
</code>
| 0.2s | 过度动画时间 |
...
...
@@ -70,9 +72,7 @@ CupertinoPopoverButton(
height:
100.0
,
child:
Text
(
'左上角内容'
),
)
},
popoverWidth:
100.0
,
popoverHeight:
100.0
);
});
```

...
...
example/lib/pages/popover_demo.dart
浏览文件 @
7fd8f603
...
...
@@ -60,7 +60,6 @@ class PopoverDemoState extends State<PopoverDemo>{
return
Padding
(
padding:
EdgeInsets
.
all
(
20.0
),
child:
CupertinoPopoverButton
(
child:
Container
(
width:
80.0
,
height:
40.0
,
...
...
@@ -72,6 +71,7 @@ class PopoverDemoState extends State<PopoverDemo>{
child:
Center
(
child:
Text
(
btnTitle
)),
),
popoverBuild:
(
context
)
{
// return Text("satatastas");
return
CupertinoPopoverMenuList
(
children:
<
Widget
>[
CupertinoPopoverMenuItem
(
leading:
Icon
(
Icons
.
add
),
child:
Text
(
"新增"
),),
...
...
@@ -79,9 +79,7 @@ class PopoverDemoState extends State<PopoverDemo>{
CupertinoPopoverMenuItem
(
leading:
Icon
(
Icons
.
delete
),
child:
Text
(
"删除"
),)
],
);
},
popoverWidth:
150.0
,
popoverHeight:
123.0
)
})
);
...
...
lib/widgets/popover/cupertino_popover.dart
浏览文件 @
7fd8f603
差异被折叠。
点击展开。
lib/widgets/popover/cupertino_popover_menu_item.dart
浏览文件 @
7fd8f603
...
...
@@ -8,16 +8,18 @@ class CupertinoPopoverMenuList extends StatelessWidget{
@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
),
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
),
);
}
...
...
pubspec.lock
浏览文件 @
7fd8f603
...
...
@@ -76,13 +76,6 @@ packages:
description: flutter
source: sdk
version: "0.0.0"
flutter_spinkit:
dependency: "direct main"
description:
name: flutter_spinkit
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.1.0"
flutter_test:
dependency: "direct dev"
description: flutter
...
...
pubspec.yaml
浏览文件 @
7fd8f603
name
:
cool_ui
description
:
用flutter实现一些我认为好看的UI控件,目前暂时只有Popover,Weui,不过有什么觉得好看的可以提Issue
version
:
0.1.
4
version
:
0.1.
5
author
:
Kevin <liangkaikevin@gmail.com>
homepage
:
https://github.com/Im-Kevin/cool_ui
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论