custom_popup 1.0.0 copy "custom_popup: ^1.0.0" to clipboard
custom_popup: ^1.0.0 copied to clipboard

A highly customizable popup widget, which is easy to integrate with your app.

Custom Popup #

[Custom Popup Logo]

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

[Showcase GIF]

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(),
    ),
    items: [
        CustomPopupButtonItem(
            label: 'Edit',
            icon: PhosphorIcon(
            PhosphorIcons.pencilLine(),
            ),
            onTap: () {},
        ),
        CustomPopupButtonItem(
            label: 'Duplicate',
            icon: PhosphorIcon(
                PhosphorIcons.copy(),
            ),
            onTap: () {},
        ),
        ...
        const CustomPopupMenuDivider(),
        CustomPopupButtonItem(
            label: 'Delete',
            icon: PhosphorIcon(
                PhosphorIcons.trash(),
            ),
            foregroundColor: Colors.red,
            onTap: () {},
        ),
    ],
)
4
likes
0
points
1
downloads

Publisher

unverified uploader

Weekly Downloads

A highly customizable popup widget, which is easy to integrate with your app.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_animate

More

Packages that depend on custom_popup