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

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:

Screenshot_2019-05-23-10-58-43-361_com.example.ex.png

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
dividerBuilder DivderBuilder false build divider builder

typedef Widget DividerBuilder(BuildContext context, int lastIndex);

Name Type Required Describe
text string true
onTap Function true onTap
Name Type Required Describe Default
textStyle TextStyle false style of menu item TextStyle(fontSize: 14.0,color: Colors.white)
color Color false color of menu item Color(0xFF111111)
splashColor Color false splashColor of menu item Color(0xFF888888)
radius doule false radius of menu item, only first and last item 5.0
constraints BoxConstraints false constraints of menu item BoxConstraints()
padding TextStyle false padding of menu item'text EdgeInsets.symmetric(horizontal: 10.0, vertical: 10.0)

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

flutter

More

Packages that depend on menu