我正在使用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上工作正常。