right7ctrl / flutter-alertify

Flutter package that shows well animated sweet alert dialogs with 5 different styles @flutter

Home Page:https://pub.dartlang.org/packages/alertify

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

✨ Flutter Alertify

![pub package]

A collection of beautiful animated dialogs.

🎖 Installing

dependencies:
  alertify: "^0.0.2"

⚡️ Import

import 'package:alertify/alertify.dart';

🎮 How To Use

 Alertify(
  content: 'Some content here',
  context: context,
  isDismissible: true,
  title: 'Alertify',
  alertType: AlertifyType.success,
  buttonText: 'OK',
  animationType: AnimationType.outToIn,
  barrierColor: Colors.black.withOpacity(0.5),
  onDismiss: () {
    // Your code here
  },
).show();

❗️ Note

  • Pull requests are welcomed

⭐️ License

MIT License

About

Flutter package that shows well animated sweet alert dialogs with 5 different styles @flutter

https://pub.dartlang.org/packages/alertify

License:Other


Languages

Language:Dart 100.0%