来自Youtube嵌入式视频的音频在Web视图关闭后继续播放 - Flutter

时间:2018-04-04 18:11:17

标签: webview flutter

我正在使用Flutter with MaterialPageRoute使用flutter_webview_plugin创建一个webview。

 Navigator.of(videoContext).push(
      new MaterialPageRoute(builder: (context) {
             return new WebviewScaffold(
                 url: "https://www.youtube.com/embed/fq4N0hgOWzU",
                 appBar: new AppBar(
                         title: new Text("flutter"),
                         backgroundColor: Colors.black,
                         ),
                       );
                  }));

单击左上角的后退按钮后,webview将关闭,但音频会继续播放。

插件页面上的示例没有帮助。  (https://pub.dartlang.org/packages/flutter_webview_plugin#-example-tab-

如果有人能告诉我正确的方向,我将非常感激。

[UPDATE]
这看起来像Assus Zenfone 5(android 4.4)模型的问题 Code在Moto G3上工作正常。

1 个答案:

答案 0 :(得分:1)

  

不要忘记处理webview

 flutterWebviewPlugin.dispose()
来自documentation