custom_popup

Creator: coderz1093

Last updated:

0 purchases

custom_popup Image
custom_popup Images

Languages

Categories

Add to Cart

Description:

custom popup

Custom Popup #






A highly customizable popup widget, that is easy to integrate into your code.
Features #

Custom Popup is a highly customizable popup widget, that is easy to integrate into your code.

Getting started #
Just add the widget in your code. The example below shows how to use the widget with Phosphor icons package.
CustomPopupButton(
icon: PhosphorIcon(
PhosphorIcons.dotsThreeVertical(),
),
closeIcon: PhosphorIcon(
PhosphorIcons.xCircle(),
),
animationAlignment: Alignment.topLeft,
items: [
CustomPopupMenuItem(
label: 'Edit',
icon: PhosphorIcon(
PhosphorIcons.pencilLine(),
),
onTap: () {},
),
CustomPopupMenuItem(
label: 'Duplicate',
icon: PhosphorIcon(
PhosphorIcons.copy(),
),
onTap: () {},
),
...
const CustomPopupMenuDivider(),
CustomPopupMenuItem(
label: 'Delete',
icon: PhosphorIcon(
PhosphorIcons.trash(),
),
foregroundColor: Colors.red,
onTap: () {},
),
],
)
copied to clipboard
Showcase #

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.