A Flutter plugin for displaying sweet alert dialogs.
Inspired by rich_alert
dependencies:
sweet_alert_dialogs: "^0.2.0"
import 'package:sweet_alert_dialogs/sweet_alert_dialogs.dart';
showDialog(
context: context,
builder: (BuildContext context) {
return RichAlertDialog(
alertTitle: richTitle("Success"),
alertSubtitle: richSubtitle("This is a Sucess alert"),
alertType: RichAlertType.SUCCESS,
actions: <Widget>[
FlatButton(
child: Text("OK"),
onPressed: (){Navigator.pop(context);},
),
FlatButton(
child: Text("Cancel"),
onPressed: (){Navigator.pop(context);},
),
],
);
}
);
If you encounter any problems feel free to open an issue. If you feel the library is missing a feature, please raise a ticket on Github and I'll look into it. Pull request are also welcome.
For help getting started with Flutter, view the online documentation.
For help on editing plugin code, view the documentation.
MIT Licence