sweet_alert_dialogs 0.2.0 copy "sweet_alert_dialogs: ^0.2.0" to clipboard
sweet_alert_dialogs: ^0.2.0 copied to clipboard

discontinued

A Flutter plugin for displaying sweet alert dialogs without hassle.

✨ Flutter Sweet Alert pub package #

A Flutter plugin for displaying sweet alert dialogs.

Inspired by rich_alert

🎖 Installing #

dependencies:
  sweet_alert_dialogs: "^0.1.0"

⚡️ Import #

import 'package:sweet_alert_dialogs/sweet_alert_dialogs.dart';

📷 Screenshots #

🎮 How To Use #

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);},
            ),
          ],
       );
    }
);

🐛 Bugs/Requests #

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.

❗️ Note #

For help getting started with Flutter, view the online documentation.

For help on editing plugin code, view the documentation.

⭐️ License #

MIT Licence

3
likes
40
pub points
67%
popularity

Publisher

verified publisherjideguru.dev

A Flutter plugin for displaying sweet alert dialogs without hassle.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on sweet_alert_dialogs