Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
G
gz_video_player
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
蒋俊
gz_video_player
Commits
e5b70717
提交
e5b70717
authored
9月 15, 2023
作者:
jungleiOS
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
退出播放器恢复设备竖屏
上级
c24d98cd
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
11 行增加
和
6 行删除
+11
-6
video.dart
lib/video.dart
+11
-6
没有找到文件。
lib/video.dart
浏览文件 @
e5b70717
...
...
@@ -145,6 +145,7 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
/// 倍数按钮标题
String
_speedTitle
=
''
;
/// 倍数item
VideoSpeedItem
_speedItem
=
VideoSpeedItem
();
...
...
@@ -219,10 +220,13 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
DeviceOrientation
.
landscapeLeft
,
DeviceOrientation
.
landscapeRight
,
]);
/// 常亮
Wakelock
.
toggle
(
enable:
true
);
/// 初始化亮度为系统亮度
initBrightness
();
/// 倍数按钮标题
_speedTitle
=
widget
.
videoStyle
.
videoSpeedButtonStyle
.
title
;
_initPlayer
();
...
...
@@ -248,10 +252,9 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
_controller
.
dispose
();
_controlBarAnimationController
.
dispose
();
///竖屏
SystemChrome
.
setPreferredOrientations
([
DeviceOrientation
.
portraitUp
,
]);
///恢复设备竖屏
SystemChrome
.
setPreferredOrientations
([
DeviceOrientation
.
portraitUp
]);
OrientationPlugin
.
setPreferredOrientations
([
DeviceOrientation
.
portraitUp
]);
Wakelock
.
toggle
(
enable:
false
);
_subscription
.
cancel
();
_brightness
.
dispose
();
...
...
@@ -816,7 +819,8 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
// 左侧垂直滑动 - 亮度调节
if
(
details
.
primaryDelta
!
>
0
)
{
//往下滑动
_brightness
.
value
=
_brightness
.
value
-
widget
.
playOptions
.
brightnessGestureUnit
;
_brightness
.
value
=
_brightness
.
value
-
widget
.
playOptions
.
brightnessGestureUnit
;
widget
.
onBrightness
?.
call
(
_brightness
.
value
);
if
(
_brightness
.
value
<=
0
)
{
_brightness
.
value
=
0.0
;
...
...
@@ -825,7 +829,8 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
await
ScreenBrightness
().
setScreenBrightness
(
_brightness
.
value
);
}
else
{
//往上滑动
_brightness
.
value
=
_brightness
.
value
+
widget
.
playOptions
.
brightnessGestureUnit
;
_brightness
.
value
=
_brightness
.
value
+
widget
.
playOptions
.
brightnessGestureUnit
;
widget
.
onBrightness
?.
call
(
_brightness
.
value
);
if
(
_brightness
.
value
>=
1
)
{
_brightness
.
value
=
1.0
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论