Alert
Contextual feedback messages for user actions.
Basic Usage
Heads up!
You can add components using the CLI.
dart
1
2
3
4
DAlert(
title: 'Heads up!',
description: 'You can add components using the CLI.',
)
Colors
Info
This is an informational message.
Success
Operation completed successfully.
Warning
Please review before continuing.
Error
Something went wrong.
dart
1
2
3
4
DAlert(title: 'Info', description: '...', color: DAlertColor.info)
DAlert(title: 'Success', description: '...', color: DAlertColor.success)
DAlert(title: 'Warning', description: '...', color: DAlertColor.warning)
DAlert(title: 'Error', description: '...', color: DAlertColor.error)