fc_material_alert

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

fc material alert

fc_material_alert #

A simple wrapper around Flutter Material Design alert dialogs.
Usage #
// Confirm dialog.
final result = await FcMaterialAlert.confirm(context,
title: 'Confirm',
yesText: 'Yes',
noText: 'No',
cancelText: 'Cancel',
content: 'Are you sure?');

// Standard dialog.
await FcMaterialAlert.standard(context,
title: 'Info',
okText: 'OK',
content: 'You selected $result');

// Error dialog.
await FcMaterialAlert.error(
context, 'Exception: Test plugin error',
title: 'Error', okText: 'OK');
copied to clipboard

License

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

Files:

Customer Reviews

There are no reviews.