提交 6abf309a authored 作者: jungleiOS's avatar jungleiOS

加入 homepage 修复非mounted状态访问context 问题

上级 b444cbae
......@@ -78,9 +78,9 @@ class _MyAppState extends State<MyApp> {
playOptions: VideoPlayOptions(
seekSeconds: 30,
//左侧垂直手势调节视频亮度的单位(0~1之间,不能小于0,不能大于1)
brightnessGestureUnit: 0.05,
brightnessGestureUnit: 0.005,
//右侧垂直手势调节视频音量的单位(0~1之间,不能小于0,不能大于1)
volumeGestureUnit: 0.05,
volumeGestureUnit: 0.005,
//横行手势调节视频进度的单位秒数
progressGestureUnit: 2000,
aspectRatio: 16 / 9,
......
......@@ -167,7 +167,7 @@ class GZVideoPlayerState extends State<GZVideoPlayer>
//监听系统的每一帧
widgetsBinding.addPostFrameCallback((callback) {
widgetsBinding.addPersistentFrameCallback((callback) {
if (!context.mounted) return;
if (!mounted) return;
var orientation = MediaQuery.of(context).orientation;
bool fullscreen = false;
if (orientation == Orientation.landscape) {
......
name: gz_video_player
description: A new Flutter project.
version: 0.0.1
homepage:
homepage: http://code.seevin.com/18223204110/gz_video_player
environment:
sdk: '>=2.19.6 <3.0.0'
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论