Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
G
gz_video_player
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
蒋俊
gz_video_player
Commits
7a87147e
提交
7a87147e
authored
10月 11, 2023
作者:
jungleiOS
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
播放器控制栏按钮默认尺寸调整 倍速按钮默认字号调整
上级
1fb93802
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
39 行增加
和
39 行删除
+39
-39
main.dart
example/lib/main.dart
+37
-37
video_control_bar_style.dart
lib/video_control_bar_style.dart
+1
-1
video_speed.dart
lib/video_speed.dart
+1
-1
没有找到文件。
example/lib/main.dart
浏览文件 @
7a87147e
...
...
@@ -272,53 +272,53 @@ class _VideoPlayerPageState extends State<VideoPlayerPage> {
color:
Colors
.
white
,
size:
25
),
/// 更改进度栏的暂停按钮
pauseIcon:
const
Icon
(
Icons
.
pause
,
color:
Colors
.
white
,
size:
25
,
),
//
pauseIcon: const Icon(
//
Icons.pause,
//
color: Colors.white,
//
size: 25,
//
),
/// 更改进度栏的快退按钮
rewindIcon:
const
Icon
(
Icons
.
replay_30
,
size:
25
,
color:
Colors
.
white
,
),
//
rewindIcon: const Icon(
//
Icons.replay_30,
//
size: 25,
//
color: Colors.white,
//
),
/// 更改进度栏的快进按钮
forwardIcon:
const
Icon
(
Icons
.
forward_30
,
size:
25
,
color:
Colors
.
white
,
),
//
forwardIcon: const Icon(
//
Icons.forward_30,
//
size: 25,
//
color: Colors.white,
//
),
/// 更改进度栏的全屏按钮
fullscreenIcon:
const
Icon
(
Icons
.
fullscreen
,
size:
25
,
color:
Colors
.
white
,
),
//
fullscreenIcon: const Icon(
//
Icons.fullscreen,
//
size: 25,
//
color: Colors.white,
//
),
/// 更改进度栏的退出全屏按钮
fullscreenExitIcon:
const
Icon
(
Icons
.
fullscreen_exit
,
size:
25
,
color:
Colors
.
white
,
),
//
fullscreenExitIcon: const Icon(
//
Icons.fullscreen_exit,
//
size: 25,
//
color: Colors.white,
//
),
/// 决定控制栏的元素以及排序,示例见上方图3
itemList:
[
"rewind"
,
"play"
,
"forward"
,
"position-time"
,
//当前播放时间
"progress"
,
//线条形进度条(与‘basic-progress’二选一)
// "basic-progress",//矩形进度条(与‘progress’二选一)
"duration-time"
,
//视频总时长
// "time",//格式:当前时间/视频总时长
'speed'
,
"fullscreen"
],
//
itemList: [
//
"rewind",
//
"play",
//
"forward",
//
"position-time", //当前播放时间
//
"progress", //线条形进度条(与‘basic-progress’二选一)
//
// "basic-progress",//矩形进度条(与‘progress’二选一)
//
"duration-time", //视频总时长
//
// "time",//格式:当前时间/视频总时长
//
'speed',
//
"fullscreen"
//
],
),
/// 自定义字幕
...
...
lib/video_control_bar_style.dart
浏览文件 @
7a87147e
import
'package:flutter/material.dart'
;
import
'package:gz_video_player/video_progress_style.dart'
;
const
double
iconSize
=
18
;
const
double
iconSize
=
25
;
/// 底部控制拦样式
class
VideoControlBarStyle
{
...
...
lib/video_speed.dart
浏览文件 @
7a87147e
...
...
@@ -36,7 +36,7 @@ class VideoSpeedButtonStyle {
VideoSpeedButtonStyle
({
this
.
title
=
'倍速'
,
this
.
textStyle
=
const
TextStyle
(
fontSize:
1
1
.0
,
fontSize:
1
4
.0
,
fontWeight:
FontWeight
.
normal
,
color:
Colors
.
white
,
),
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论