Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
G
gz_video_player
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
蒋俊
gz_video_player
Commits
c24d98cd
提交
c24d98cd
authored
9月 15, 2023
作者:
jungleiOS
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
loading 组件背景设为黑色,挡住亮度组件初始化时闪现问题,退出播放器恢复亮度
上级
2abe3aa0
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
33 行增加
和
24 行删除
+33
-24
main.dart
example/lib/main.dart
+0
-0
video.dart
lib/video.dart
+10
-4
video_loading_view.dart
lib/widget/video_loading_view.dart
+23
-20
没有找到文件。
example/lib/main.dart
浏览文件 @
c24d98cd
差异被折叠。
点击展开。
lib/video.dart
浏览文件 @
c24d98cd
...
@@ -121,7 +121,8 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
...
@@ -121,7 +121,8 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
bool
_initialized
=
false
;
bool
_initialized
=
false
;
/// 屏幕亮度
/// 屏幕亮度
final
ValueNotifier
<
double
>
_brightness
=
ValueNotifier
(
0.5
);
final
ValueNotifier
<
double
>
_brightness
=
ValueNotifier
(
0.0
);
late
double
_originBrightness
;
/// 视频音量
/// 视频音量
final
ValueNotifier
<
double
>
_volume
=
ValueNotifier
(
0.5
);
final
ValueNotifier
<
double
>
_volume
=
ValueNotifier
(
0.5
);
...
@@ -221,14 +222,18 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
...
@@ -221,14 +222,18 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
/// 常亮
/// 常亮
Wakelock
.
toggle
(
enable:
true
);
Wakelock
.
toggle
(
enable:
true
);
/// 初始化亮度为系统亮度
/// 初始化亮度为系统亮度
ScreenBrightness
().
current
.
then
((
brightness
)
{
initBrightness
();
_brightness
.
value
=
brightness
;
});
/// 倍数按钮标题
/// 倍数按钮标题
_speedTitle
=
widget
.
videoStyle
.
videoSpeedButtonStyle
.
title
;
_speedTitle
=
widget
.
videoStyle
.
videoSpeedButtonStyle
.
title
;
_initPlayer
();
_initPlayer
();
}
}
void
initBrightness
()
async
{
double
brightness
=
await
ScreenBrightness
().
current
;
_brightness
.
value
=
brightness
;
_originBrightness
=
brightness
;
}
@override
@override
void
didUpdateWidget
(
GZVideoPlayer
oldWidget
)
{
void
didUpdateWidget
(
GZVideoPlayer
oldWidget
)
{
if
(
oldWidget
.
dataSource
!=
widget
.
dataSource
)
{
if
(
oldWidget
.
dataSource
!=
widget
.
dataSource
)
{
...
@@ -251,6 +256,7 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
...
@@ -251,6 +256,7 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
_subscription
.
cancel
();
_subscription
.
cancel
();
_brightness
.
dispose
();
_brightness
.
dispose
();
_volume
.
dispose
();
_volume
.
dispose
();
ScreenBrightness
().
setScreenBrightness
(
_originBrightness
);
super
.
dispose
();
super
.
dispose
();
}
}
...
...
lib/widget/video_loading_view.dart
浏览文件 @
c24d98cd
...
@@ -8,27 +8,30 @@ class VideoLoadingView extends StatelessWidget {
...
@@ -8,27 +8,30 @@ class VideoLoadingView extends StatelessWidget {
@override
@override
Widget
build
(
BuildContext
context
)
{
Widget
build
(
BuildContext
context
)
{
return
Align
(
return
DecoratedBox
(
alignment:
Alignment
.
center
,
decoration:
const
BoxDecoration
(
color:
Colors
.
black
),
child:
Center
(
child:
Align
(
child:
Column
(
alignment:
Alignment
.
center
,
crossAxisAlignment:
CrossAxisAlignment
.
center
,
child:
Center
(
mainAxisAlignment:
MainAxisAlignment
.
center
,
child:
Column
(
children:
<
Widget
>[
crossAxisAlignment:
CrossAxisAlignment
.
center
,
loadingStyle
.
customLoadingIcon
,
mainAxisAlignment:
MainAxisAlignment
.
center
,
loadingStyle
.
customLoadingText
!=
null
children:
<
Widget
>[
?
loadingStyle
.
customLoadingText
!
loadingStyle
.
customLoadingIcon
,
:
Container
(
loadingStyle
.
customLoadingText
!=
null
margin:
const
EdgeInsets
.
only
(
top:
10
),
?
loadingStyle
.
customLoadingText
!
child:
Text
(
:
Container
(
loadingStyle
.
loadingText
,
margin:
const
EdgeInsets
.
only
(
top:
10
),
style:
TextStyle
(
child:
Text
(
color:
loadingStyle
.
loadingTextFontColor
,
loadingStyle
.
loadingText
,
fontSize:
loadingStyle
.
loadingTextFontSize
,
style:
TextStyle
(
color:
loadingStyle
.
loadingTextFontColor
,
fontSize:
loadingStyle
.
loadingTextFontSize
,
),
),
),
)
,
)
)
],
]
,
)
,
),
),
),
),
);
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论