pop_over_menu 0.0.1
pop_over_menu: ^0.0.1 copied to clipboard
A lightweight Flutter popover menu that appears on button click, automatically positioning itself above or below the button.
BS Popover Menu #
A lightweight Flutter popover menu that appears on button click, automatically positioning itself above or below the button.
Example #
PopoverMenu.show(
context: context,
items: [
MenuItemModel(icon: Icon(Icons.insert_drive_file), title: "Document", onTap: () {}),
MenuItemModel(icon: Icon(Icons.photo), title: "Photos & Videos", onTap: () {}),
],
);