shimcy / rich-alert-dialogs

A Flutter plugin for displaying cool alert dialogs.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

✨ Flutter Sweet Alert pub package

A Flutter plugin for displaying sweet alert dialogs.

Inspired by rich_alert

🎖 Installing

dependencies:
  sweet_alert_dialogs: "^0.2.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

About

A Flutter plugin for displaying cool alert dialogs.

License:MIT License


Languages

Language:Dart 71.2%Language:Ruby 15.4%Language:Java 6.6%Language:Swift 4.8%Language:Objective-C 1.9%