Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
G
gz_video_player
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
蒋俊
gz_video_player
Commits
a424b0f9
提交
a424b0f9
authored
10月 30, 2023
作者:
jungleiOS
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
暴露重播方法
上级
5e585d66
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
14 行增加
和
11 行删除
+14
-11
other_test_page.dart
example/lib/other_test_page.dart
+2
-2
overflow_test_page.dart
example/lib/overflow_test_page.dart
+2
-2
video.dart
lib/video.dart
+10
-7
没有找到文件。
example/lib/other_test_page.dart
浏览文件 @
a424b0f9
...
...
@@ -9,8 +9,8 @@ class OtherTestPage extends StatefulWidget {
}
class
_OtherTestPageState
extends
State
<
OtherTestPage
>
{
String
url
=
'https://mpv.videocc.net/8f38fa3352/c/8f38fa3352a8cc8f70dd384edb9b21dc_1.mp4'
;
String
url
=
'https://mpv.videocc.net/8f38fa3352/7/8f38fa335252dea652836243dd7e3f97_1.mp4'
;
//
'https://mpv.videocc.net/8f38fa3352/c/8f38fa3352a8cc8f70dd384edb9b21dc_1.mp4';
late
VideoPlayerController
_controller
;
...
...
example/lib/overflow_test_page.dart
浏览文件 @
a424b0f9
...
...
@@ -3,7 +3,7 @@ import 'package:gz_video_player/video.dart';
class
OverflowTestPage
extends
StatelessWidget
{
const
OverflowTestPage
({
super
.
key
});
// https://mpv.videocc.net/8f38fa3352/7/8f38fa335252dea652836243dd7e3f97_1.mp4
@override
Widget
build
(
BuildContext
context
)
{
return
Scaffold
(
...
...
@@ -16,7 +16,7 @@ class OverflowTestPage extends StatelessWidget {
color:
Colors
.
blue
,
child:
GZVideoPlayer
(
dataSource:
'https://mpv.videocc.net/8f38fa3352/
5/8f38fa3352cdb65e6773173ae8c767b5
_1.mp4'
,
'https://mpv.videocc.net/8f38fa3352/
7/8f38fa335252dea652836243dd7e3f97
_1.mp4'
,
sourceType:
DataSourceType
.
network
,
),
),
...
...
lib/video.dart
浏览文件 @
a424b0f9
...
...
@@ -480,6 +480,15 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
}
}
/// 重播
void
replay
()
{
_isEnded
=
false
;
_updateDataSource
(
source
:
_dataSource
,
type:
_sourceType
,
);
}
/// 点击播放或暂停
void
togglePlay
()
{
_createHideControlBarTimer
();
...
...
@@ -788,13 +797,7 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
?
Align
(
alignment:
Alignment
.
center
,
child:
GestureDetector
(
onTap:
()
{
_isEnded
=
false
;
_updateDataSource
(
source
:
_dataSource
,
type:
_sourceType
,
);
},
onTap:
replay
,
child:
widget
.
videoStyle
.
replayIcon
,
),
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论