Answers for "flutter show popupmenubutton"

2

flutter popupmenubutton

PopupMenuButton(
        itemBuilder: (BuildContext context) => <PopupMenuEntry>[
          const PopupMenuItem(
            child: Text('Option1'),
          ),
          const PopupMenuItem(
            child: Text('Option2'),
          ),
          const PopupMenuItem(
            child: Text('Option3'),
          ),
        ],
      )
Posted by: Guest on September-11-2021
0

how to add popupmenubutton in flutter

//with tooltip and round border corner(if you also needed those)
actions: [
          PopupMenuButton<int>(
            tooltip: "",                           //Adding tooltip
            shape: RoundedRectangleBorder(         //Adding Round Border
              borderRadius: BorderRadius.all(
                Radius.circular(20.0),
              ),
            ),
            itemBuilder: (context) => [
              PopupMenuItem(
                child: Text("Settings"),
                value: 1,
              ),
              PopupMenuDivider(                    //Adding Divider
                height: 0, 
              ),
              PopupMenuItem(
                child: Text("FAQ"),
                value: 2,
              ),
              PopupMenuDivider(                    //Adding Divider
                height: 0,
              ),
              PopupMenuItem(
                child: Text("Contact Us"),
                value: 2,
              ),
            ],
          ),
          SizedBox(width: 10),
        ],
Posted by: Guest on December-25-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language