-
Notifications
You must be signed in to change notification settings - Fork 939
Closed
Description
From @GokulDharumar on March 12, 2018 19:28
URL: https://pub.dartlang.org/packages/flutter_webview_plugin
when i use PopupmenuButton with webviewscafold. the menus are not displayed on top of webview ... the webview kind of hides the menu
routes: {
"/": () => new MyHomePage(title: "Flutter WebView Demo"),
"/widget": () => new WebviewScaffold(
url: selectedUrl,
appBar: new AppBar(
title: new Text("Test"),
actions: <Widget>[
new PopupMenuButton<Choice>( // overflow menu
onSelected: _select,
itemBuilder: (BuildContext context) {
return choices.skip(0).map((Choice choice) {
return new PopupMenuItem<Choice>(
value: choice,
child: new Icon(choice.icon),
);
}).toList();
},
),
],
),
)
},
Copied from original issue: dart-lang/pub-dev#1095
Metadata
Metadata
Assignees
Labels
No labels