Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
G
gz_video_player
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
蒋俊
gz_video_player
Commits
993eb30c
提交
993eb30c
authored
9月 11, 2023
作者:
jungleiOS
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
dispose 时销毁动画控制器 重置按钮不根据结束回调是否实现而显示
上级
6abf309a
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
20 行增加
和
11 行删除
+20
-11
video.dart
lib/video.dart
+20
-11
没有找到文件。
lib/video.dart
浏览文件 @
993eb30c
...
...
@@ -213,6 +213,7 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
]);
// 常亮
Wakelock
.
toggle
(
enable:
true
);
/// 倍数按钮标题
_speedTitle
=
widget
.
videoStyle
.
videoSpeedButtonStyle
.
title
;
_initPlayer
();
...
...
@@ -230,6 +231,7 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
void
dispose
()
{
_clearHideControlBarTimer
();
_controller
.
dispose
();
_controlBarAnimationController
.
dispose
();
///竖屏
SystemChrome
.
setPreferredOrientations
([
...
...
@@ -308,8 +310,8 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
});
}
else
{
if
(
oPosition
>=
oDuration
)
{
if
(
widget
.
onEnded
!=
null
)
{
resetVideoPlayer
();
if
(
widget
.
onEnded
!=
null
)
{
widget
.
onEnded
!(
_controller
.
value
);
}
}
...
...
@@ -638,7 +640,8 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
:
const
Text
(
""
),
/// 主字幕
widget
.
videoStyle
.
videoSubtitlesStyle
.
mainTitle
??
Align
(
widget
.
videoStyle
.
videoSubtitlesStyle
.
mainTitle
??
Align
(
alignment:
Alignment
.
bottomCenter
,
child:
Container
(
padding:
const
EdgeInsets
.
fromLTRB
(
10
,
0
,
10
,
30
),
...
...
@@ -646,15 +649,16 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
maxLines:
2
,
textAlign:
TextAlign
.
center
,
style:
TextStyle
(
color:
widget
.
videoStyle
.
videoSubtitlesStyle
.
mainTitleColor
,
color:
widget
.
videoStyle
.
videoSubtitlesStyle
.
mainTitleColor
,
fontSize:
widget
.
videoStyle
.
videoSubtitlesStyle
.
mainTitleFontSize
)),
),
),
/// 辅字幕
widget
.
videoStyle
.
videoSubtitlesStyle
.
subTitle
??
Align
(
widget
.
videoStyle
.
videoSubtitlesStyle
.
subTitle
??
Align
(
alignment:
Alignment
.
bottomCenter
,
child:
Container
(
padding:
const
EdgeInsets
.
all
(
10
),
...
...
@@ -690,12 +694,14 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
},
),
widget
.
brightnessWidget
??
BrightnessWidget
(
widget
.
brightnessWidget
??
BrightnessWidget
(
brightness:
_brightness
,
videoBrightnessStyle:
widget
.
videoStyle
.
videoBrightnessStyle
,
),
widget
.
volumeWidget
??
VolumeWidget
(
widget
.
volumeWidget
??
VolumeWidget
(
volume:
_volume
,
videoVolumeStyle:
widget
.
videoStyle
.
videoVolumeStyle
,
),
...
...
@@ -760,8 +766,8 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
if
(!
_controller
.
value
.
isInitialized
)
return
;
},
onVerticalDragUpdate:
(
DragUpdateDetails
details
)
async
{
if
(!
_controller
.
value
.
isInitialized
||
details
.
primaryDelta
==
null
)
return
;
if
(!
_controller
.
value
.
isInitialized
||
details
.
primaryDelta
==
null
)
return
;
// 右侧垂直滑动 - 音量调节
if
(
details
.
globalPosition
.
dx
>=
(
screenSize
.
width
/
2
))
{
_volume
.
value
=
_controller
.
value
.
volume
;
...
...
@@ -825,8 +831,11 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
child:
AspectRatio
(
aspectRatio:
_controller
.
value
.
aspectRatio
,
child:
VideoPlayer
(
_controller
),
)),
))),
),
),
),
),
),
///控制拦以及(可拓展)元素
];
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论