Last updated:
0 purchases
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.