Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
c3b4824b
提交
c3b4824b
authored
11月 29, 2018
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改了包的引用
上级
7e0d19dd
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
10 行增加
和
18 行删除
+10
-18
README.md
README.md
+1
-1
cupertino_popover.dart
lib/widgets/popover/cupertino_popover.dart
+6
-7
pubspec.lock
pubspec.lock
+1
-8
pubspec.yaml
pubspec.yaml
+2
-2
没有找到文件。
README.md
浏览文件 @
c3b4824b
...
@@ -7,7 +7,7 @@ Usage
...
@@ -7,7 +7,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.1.
9
"
cool_ui
:
"
^0.1.
10
"
```
```
# 控件
# 控件
...
...
lib/widgets/popover/cupertino_popover.dart
浏览文件 @
c3b4824b
...
@@ -104,8 +104,7 @@ class CupertinoPopover extends StatefulWidget {
...
@@ -104,8 +104,7 @@ class CupertinoPopover extends StatefulWidget {
@required
BuildContext
context
,
@required
BuildContext
context
,
this
.
doubleAnimation
,
this
.
doubleAnimation
,
this
.
radius
=
8.0
}):
super
(){
this
.
radius
=
8.0
}):
super
(){
ScreenUtil
.
getInstance
().
init
(
context
);
BoxConstraints
temp
;
BoxConstraints
temp
=
null
;
if
(
constraints
!=
null
){
if
(
constraints
!=
null
){
temp
=
BoxConstraints
(
maxHeight:
123.0
,
maxWidth:
150.0
).
copyWith
(
temp
=
BoxConstraints
(
maxHeight:
123.0
,
maxWidth:
150.0
).
copyWith
(
minWidth:
constraints
.
minWidth
.
isFinite
?
constraints
.
minWidth
:
null
,
minWidth:
constraints
.
minWidth
.
isFinite
?
constraints
.
minWidth
:
null
,
...
@@ -238,15 +237,15 @@ class _CupertionPopoverPositionRenderObject extends RenderShiftedBox{
...
@@ -238,15 +237,15 @@ class _CupertionPopoverPositionRenderObject extends RenderShiftedBox{
Offset
calcOffset
(
Size
size
){
Offset
calcOffset
(
Size
size
){
double
bodyLeft
=
0.0
;
double
bodyLeft
=
0.0
;
var
isArrowUp
=
ScreenUtil
.
screenHeight
>
attachRect
.
bottom
+
size
.
height
+
CupertinoPopoverState
.
_arrowHeight
;
var
isArrowUp
=
ScreenUtil
.
s
ingleton
.
s
creenHeight
>
attachRect
.
bottom
+
size
.
height
+
CupertinoPopoverState
.
_arrowHeight
;
if
(
attachRect
.
left
>
size
.
width
/
2
&&
if
(
attachRect
.
left
>
size
.
width
/
2
&&
ScreenUtil
.
screenWidth
-
attachRect
.
right
>
size
.
width
/
2
){
//判断是否可以在中间
ScreenUtil
.
s
ingleton
.
s
creenWidth
-
attachRect
.
right
>
size
.
width
/
2
){
//判断是否可以在中间
bodyLeft
=
attachRect
.
left
+
attachRect
.
width
/
2
-
size
.
width
/
2
;
bodyLeft
=
attachRect
.
left
+
attachRect
.
width
/
2
-
size
.
width
/
2
;
}
else
if
(
attachRect
.
left
<
size
.
width
/
2
){
//靠左
}
else
if
(
attachRect
.
left
<
size
.
width
/
2
){
//靠左
bodyLeft
=
10.0
;
bodyLeft
=
10.0
;
}
else
{
//靠右
}
else
{
//靠右
bodyLeft
=
ScreenUtil
.
screenWidth
-
10.0
-
size
.
width
;
bodyLeft
=
ScreenUtil
.
s
ingleton
.
s
creenWidth
-
10.0
-
size
.
width
;
}
}
if
(
isArrowUp
){
if
(
isArrowUp
){
...
@@ -348,7 +347,7 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox{
...
@@ -348,7 +347,7 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox{
child
.
layout
(
childConstraints
,
parentUsesSize:
true
);
child
.
layout
(
childConstraints
,
parentUsesSize:
true
);
size
=
Size
(
child
.
size
.
width
,
child
.
size
.
height
+
CupertinoPopoverState
.
_arrowHeight
);
size
=
Size
(
child
.
size
.
width
,
child
.
size
.
height
+
CupertinoPopoverState
.
_arrowHeight
);
final
BoxParentData
childParentData
=
child
.
parentData
;
final
BoxParentData
childParentData
=
child
.
parentData
;
var
isArrowUp
=
ScreenUtil
.
screenHeight
>
attachRect
.
bottom
+
size
.
height
+
CupertinoPopoverState
.
_arrowHeight
;
var
isArrowUp
=
ScreenUtil
.
s
ingleton
.
s
creenHeight
>
attachRect
.
bottom
+
size
.
height
+
CupertinoPopoverState
.
_arrowHeight
;
if
(
isArrowUp
)
if
(
isArrowUp
)
{
{
childParentData
.
offset
=
Offset
(
0.0
,
CupertinoPopoverState
.
_arrowHeight
);
childParentData
.
offset
=
Offset
(
0.0
,
CupertinoPopoverState
.
_arrowHeight
);
...
@@ -360,7 +359,7 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox{
...
@@ -360,7 +359,7 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox{
// TODO: implement paint
// TODO: implement paint
Matrix4
transform
=
Matrix4
.
identity
();
Matrix4
transform
=
Matrix4
.
identity
();
//
//
var
isArrowUp
=
ScreenUtil
.
screenHeight
>
attachRect
.
bottom
+
size
.
height
+
CupertinoPopoverState
.
_arrowHeight
;
var
isArrowUp
=
ScreenUtil
.
s
ingleton
.
s
creenHeight
>
attachRect
.
bottom
+
size
.
height
+
CupertinoPopoverState
.
_arrowHeight
;
var
arrowLeft
=
attachRect
.
left
+
attachRect
.
width
/
2
-
CupertinoPopoverState
.
_arrowWidth
/
2
-
offset
.
dx
;
var
arrowLeft
=
attachRect
.
left
+
attachRect
.
width
/
2
-
CupertinoPopoverState
.
_arrowWidth
/
2
-
offset
.
dx
;
var
translation
=
Offset
(
arrowLeft
+
CupertinoPopoverState
.
_arrowWidth
/
2
,
isArrowUp
?
0.0
:
size
.
height
);
var
translation
=
Offset
(
arrowLeft
+
CupertinoPopoverState
.
_arrowWidth
/
2
,
isArrowUp
?
0.0
:
size
.
height
);
...
...
pubspec.lock
浏览文件 @
c3b4824b
...
@@ -29,20 +29,13 @@ packages:
...
@@ -29,20 +29,13 @@ packages:
url: "https://pub.flutter-io.cn"
url: "https://pub.flutter-io.cn"
source: hosted
source: hosted
version: "1.14.11"
version: "1.14.11"
cupertino_icons:
dependency: "direct main"
description:
name: cupertino_icons
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.1.2"
flustars:
flustars:
dependency: "direct main"
dependency: "direct main"
description:
description:
name: flustars
name: flustars
url: "https://pub.flutter-io.cn"
url: "https://pub.flutter-io.cn"
source: hosted
source: hosted
version: "0.1.
3
"
version: "0.1.
4
"
flutter:
flutter:
dependency: "direct main"
dependency: "direct main"
description: flutter
description: flutter
...
...
pubspec.yaml
浏览文件 @
c3b4824b
name
:
cool_ui
name
:
cool_ui
description
:
用flutter实现一些我认为好看的UI控件,目前暂时只有Popover,Weui,Custom Keyboard,不过有什么觉得好看的可以提Issue
description
:
用flutter实现一些我认为好看的UI控件,目前暂时只有Popover,Weui,Custom Keyboard,不过有什么觉得好看的可以提Issue
version
:
0.1.
9
version
:
0.1.
10
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
...
@@ -11,7 +11,7 @@ dependencies:
...
@@ -11,7 +11,7 @@ dependencies:
flutter
:
flutter
:
sdk
:
flutter
sdk
:
flutter
flustars
:
0.1.3
flustars
:
^0.1.4
dev_dependencies
:
dev_dependencies
:
flutter_test
:
flutter_test
:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论