bms_video_player
bms_video_player copied to clipboard
退出当前页面时,后台还有声音
你好,我使用了您的包后,播放正常,但是退出当前页面后,后台依然播放声音。我看了下源代码,好像没有实现播放器的销毁方法。 手机:iPhone xr 代码:
var width2 = MediaQuery.of(context).size.width;
var _bmsVideoPlayer = new BmsVideoPlayer(
onCreated: (vi) {
videoController = vi;
vi.loadUrl(url);
},
x: 0,
y: 0,
width: width2,
height: width2 * 9 / 16);
var container = Container(
height: MediaQuery.of(context).size.width * 9 / 16,
child: _bmsVideoPlayer,
color: Colors.grey,
);
return container;