Skip to content

<Summarize your issues here> #44

@isoos

Description

@isoos

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions