fc_material_alert

Last updated:

0 purchases

fc_material_alert Image
fc_material_alert Images
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 In This Product:

Customer Reviews

There are no reviews.