Dialog
Modal dialog boxes for user interactions and confirmations.
Installation
bash
flutter_studio add dialogbash
flutter pub add flutter_studioUsage
dart
CustomDialog.show(
context,
title: 'Confirm Delete',
content: 'Are you sure you want to delete this item?',
actions: [
DialogAction(
label: 'Cancel',
onPressed: () => Navigator.pop(context),
),
DialogAction(
label: 'Delete',
isDestructive: true,
onPressed: () {
// Handle delete
Navigator.pop(context);
},
),
],
)API Reference
Properties
| Property | Type | Default | Description |
|---|---|---|---|
title | String | required | Dialog title |
content | String | required | Dialog content |
actions | List | [] | Action buttons |
