Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cool_ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
cool_ui
Commits
419141d6
提交
419141d6
authored
10月 27, 2018
作者:
Kevin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
优化了CupertinoPopover的动画
上级
91f7e513
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
43 行增加
和
57 行删除
+43
-57
CHANGELOG.md
CHANGELOG.md
+5
-0
cool_ui.iml
cool_ui.iml
+0
-2
pubspec.yaml
example/pubspec.yaml
+2
-1
cupertino_popover.dart
lib/popover/cupertino_popover.dart
+31
-54
cupertino_popover_menu_item.dart
lib/popover/cupertino_popover_menu_item.dart
+5
-0
没有找到文件。
CHANGELOG.md
浏览文件 @
419141d6
## [0.0.1] - TODO: Add release date.
*
TODO: Describe initial release.
## [0.0.9] - TODO: 修改了CupertionPopover动画
*
TODO: 修改了修改了CupertionPopover动画,添加了CupertinoPopoverMenuItem控件
\ No newline at end of file
cool_ui.iml
浏览文件 @
419141d6
...
...
@@ -12,8 +12,6 @@
<excludeFolder
url=
"file://$MODULE_DIR$/example/.dart_tool"
/>
<excludeFolder
url=
"file://$MODULE_DIR$/example/.pub"
/>
<excludeFolder
url=
"file://$MODULE_DIR$/example/build"
/>
<excludeFolder
url=
"file://$MODULE_DIR$/example/build/app/intermediates/flutter/debug/flutter_assets/packages"
/>
<excludeFolder
url=
"file://$MODULE_DIR$/example/build/app/intermediates/merged_assets/debug/mergeDebugAssets/out/flutter_assets/packages"
/>
</content>
<orderEntry
type=
"jdk"
jdkName=
"Android API 25 Platform"
jdkType=
"Android SDK"
/>
<orderEntry
type=
"sourceFolder"
forTests=
"false"
/>
...
...
example/pubspec.yaml
浏览文件 @
419141d6
...
...
@@ -19,7 +19,8 @@ dependencies:
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons
:
^0.1.2
cool_ui
:
^0.0.7
cool_ui
:
path
:
../
dev_dependencies
:
flutter_test
:
...
...
lib/popover/cupertino_popover.dart
浏览文件 @
419141d6
...
...
@@ -99,22 +99,20 @@ class CupertinoPopoverState extends State<CupertinoPopover> with TickerProvider
static
const
double
_arrowWidth
=
26.0
;
static
const
double
_arrowHeight
=
13.0
;
double
left
;
double
top
;
Rect
_arrowRect
;
Rect
_bodyRect
;
Rect
_currentArrowRect
;
Rect
_currentBodyRect
;
double
_currentRadius
;
Animation
<
double
>
doubleAnimation
;
AnimationController
animation
;
/// 是否箭头向上
bool
get
isArrowUp
{
return
ScreenUtil
.
screenHeight
>
widget
.
attachRect
.
bottom
+
widget
.
height
+
_arrowWidth
;
}
bool
isArrowUp
;
@override
void
initState
()
{
// TODO: implement initState
isArrowUp
=
ScreenUtil
.
screenHeight
>
widget
.
attachRect
.
bottom
+
widget
.
height
+
_arrowWidth
;
super
.
initState
();
calcRect
();
animation
=
new
AnimationController
(
...
...
@@ -123,34 +121,39 @@ class CupertinoPopoverState extends State<CupertinoPopover> with TickerProvider
);
// Tween({T begin, T end }):创建tween(补间)
doubleAnimation
=
new
Tween
<
double
>(
begin:
0.0
,
end:
1.0
).
animate
(
animation
)..
addListener
((){
setState
(
calcAnimationRect
);
setState
(
(){}
);
});
animation
.
forward
(
from:
0.0
);
}
@override
Widget
build
(
BuildContext
context
)
{
var
left
=
_bodyRect
.
left
;
var
top
=
isArrowUp
?
_arrowRect
.
top
:
_bodyRect
.
top
;
var
bodyMiddleX
=
_bodyRect
.
left
+
_bodyRect
.
width
/
2
;
// 计算Body的X轴中间点
var
arrowMiddleX
=
_arrowRect
.
left
+
_arrowRect
.
width
/
2
;
//计算箭头的X轴中间点
var
leftOffset
=
(
arrowMiddleX
-
bodyMiddleX
)
*
(
1
-
doubleAnimation
.
value
);
//计算X轴缩小的偏移值
return
Stack
(
children:
<
Widget
>[
Positioned
(
left:
left
,
left:
left
+
leftOffset
,
top:
top
,
child:
ClipPath
(
clipper:
ArrowCliper
(
arrowRect:
_currentArrowRect
,
bodyRect:
_currentBodyRect
,
isArrowUp:
isArrowUp
,
radius:
_currentRadius
),
child:
Container
(
padding:
EdgeInsets
.
only
(
top:
isArrowUp
?
_arrowHeight:
0.0
),
color:
Colors
.
white
,
width:
widget
.
width
,
height:
_bodyRect
.
height
+
_arrowHeight
,
child:
Material
(
child:
widget
.
child
)
),
child:
ScaleTransition
(
alignment:
isArrowUp
?
Alignment
.
topCenter
:
Alignment
.
bottomCenter
,
scale:
doubleAnimation
,
child:
ClipPath
(
clipper:
ArrowCliper
(
arrowRect:
_arrowRect
,
bodyRect:
_bodyRect
,
isArrowUp:
isArrowUp
,
radius:
widget
.
radius
),
child:
Container
(
padding:
EdgeInsets
.
only
(
top:
isArrowUp
?
_arrowHeight:
0.0
),
color:
Colors
.
white
,
width:
widget
.
width
,
height:
_bodyRect
.
height
+
_arrowHeight
,
child:
Material
(
child:
widget
.
child
)
),),
),
)
]
...
...
@@ -179,37 +182,11 @@ class CupertinoPopoverState extends State<CupertinoPopover> with TickerProvider
arrowTop
=
widget
.
attachRect
.
top
-
_arrowHeight
;
bodyTop
=
widget
.
attachRect
.
top
-
widget
.
height
-
_arrowHeight
;
}
_arrowRect
=
Rect
.
fromLTWH
(
arrowLeft
,
arrowTop
,
_arrowWidth
,
_arrowHeight
);
_bodyRect
=
Rect
.
fromLTWH
(
bodyLeft
,
bodyTop
,
widget
.
width
,
widget
.
height
);
}
calcAnimationRect
(){
var
top
=
isArrowUp
?
_arrowRect
.
top
:
_bodyRect
.
top
;
var
middleX
=
(
_arrowRect
.
left
-
_bodyRect
.
left
)
+
_arrowRect
.
width
/
2
;
var
arrowLeft
=
middleX
+
((
_arrowRect
.
left
-
_bodyRect
.
left
)
-
middleX
)
*
doubleAnimation
.
value
;
var
arrowTop
=
_arrowRect
.
top
-
top
;
var
bodyLeft
=
middleX
+
(
0
-
middleX
)
*
doubleAnimation
.
value
;
_currentRadius
=
widget
.
radius
*
doubleAnimation
.
value
;
var
bodyTop
=
_bodyRect
.
top
-
top
;
if
(
isArrowUp
){
bodyTop
=
arrowTop
+
_arrowRect
.
height
*
doubleAnimation
.
value
;
}
else
{
arrowTop
+=
_arrowRect
.
height
*(
1
-
doubleAnimation
.
value
)
;
bodyTop
=
arrowTop
-
_bodyRect
.
height
*
doubleAnimation
.
value
;
}
_currentArrowRect
=
Rect
.
fromLTWH
(
arrowLeft
,
arrowTop
,
_arrowRect
.
width
*
doubleAnimation
.
value
,
_arrowRect
.
height
*
doubleAnimation
.
value
);
_currentBodyRect
=
Rect
.
fromLTWH
(
bodyLeft
,
bodyTop
,
_bodyRect
.
width
*
doubleAnimation
.
value
,
_bodyRect
.
height
*
doubleAnimation
.
value
);
left
=
bodyLeft
;
top
=
isArrowUp
?
arrowTop:
bodyTop
;
_arrowRect
=
Rect
.
fromLTWH
(
arrowLeft
-
left
,
arrowTop
-
top
,
_arrowWidth
,
_arrowHeight
);
_bodyRect
=
Rect
.
fromLTWH
(
0.0
,
bodyTop
-
top
,
widget
.
width
,
widget
.
height
);
}
}
...
...
lib/popover/cupertino_popover_menu_item.dart
浏览文件 @
419141d6
import
'package:flutter/material.dart'
;
class
CupertinoPopoverMenuItem
extends
StatelessWidget
{
final
Widget
leading
;
final
Widget
child
;
const
CupertinoPopoverMenuItem
({
this
.
leading
,
this
.
child
});
@override
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论