FAlert( title: const Text('Heads Up!'), subtitle: const Text('You can add components to your app using the cli.'),);
Usage
FAlert(...)
FAlert( icon: FIcon(FAssets.icons.badgeAlert), title: const Text('Heads Up!'), subtitle: const Text('You can add components to your app using the cli.'),);
Examples
Primary
FAlert( title: const Text('Heads Up!'), subtitle: const Text('You can add components to your app using the cli.'),);
Destructive
FAlert( title: const Text('Heads Up!'), subtitle: const Text('You can add components to your app using the cli.'), style: FAlertStyle.destructive,);