【发布时间】:2018-09-14 09:52:45
【问题描述】:
我正在使用 Flutter 中的 Flutter_webview_plugin 和 MaterialPageRoute 创建一个 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-)
如果有人能告诉我正确的方向,我将不胜感激。
[更新]
这看起来像是 Assus Zenfone 5(android 4.4) 型号的问题。
代码在 Moto G3 上运行良好。
【问题讨论】:
-
您应该在离开当前路线之前更改或重新加载 url,我在这里有代码参考stackoverflow.com/questions/55447533/…