我尝试在Wview中打开的Webview上覆盖一个floatingActionButton。
"/widget": (_) => new WebviewScaffold(
clearCache: true,
clearCookies: true,
withJavascript: false,
url: selectedUrl,
appBar: new AppBar(
title: new Text("Widget webview"),
),
withLocalStorage: true,
/*floatingActionButton: new FloatingActionButton (
backgroundColor: Colors.amber,
onPressed: () {
Navigator.of(context).push(new MaterialPageRoute(
builder: (BuildContext context) => new AddLinkPage()));
},
child: new Icon(
Icons.add,
color: Colors.black,
),
),*/
)
这不起作用。
可以使用persistentFooterButtons: <Widget>[],
但随后视图将被切断
我使用了flutter_webview_plugin:0.1.5
答案 0 :(得分:2)
那是不可能的。
WebView是一个显示为叠加层的Android视图,因此始终是显示的最顶层内容。