menu 0.1.3 copy "menu: ^0.1.3" to clipboard
menu: ^0.1.3 copied to clipboard

outdated

menu with flutter, just wrap your widget ,and long tap to show menu

menu #

pub package GitHub

menu with flutter

just wrap your widget ,and long tap to show menu

like this:

img

Usage #

import 'package:menu/menu.dart';

Menu(
  child: Container(
    width: 200,
    color: Colors.yellow,
    height: 100,
    child: Text("long press show menu"),
  ),
  items: [
    MenuItem("copy", () {}),
    MenuItem("add", _incrementCounter),
  ],
  decoration: MenuDecoration(
    itemConstraints: BoxConstraints(),
  ),
);

params #

Name Type Required Describe
child Widget true widget
items List true options
decoration MenuDecoration false decoration for menu and item
itemBuilder ItemBuilder false customItem
clickType ClickType false
Name Type Required Describe
text string true
onTap Function true onTap
Name Type Required Describe
textStyle TextStyle false style of menu item
color Color false color of menu item
splashColor Color false splashColor of menu item
radius doule false radius of menu item, only first and last item
constraints BoxConstraints false constraints of menu item
padding TextStyle false padding of menu item'text

ClickType #

Name Describe
click click to show menu
longPress longPress widget to show menu
doubleClick double click widget to show menu
none Not responding to touch events
9
likes
40
pub points
58%
popularity

Publisher

unverified uploader

menu with flutter, just wrap your widget ,and long tap to show menu

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

cupertino_icons, flutter

More

Packages that depend on menu