flutter-alertify icon indicating copy to clipboard operation
flutter-alertify copied to clipboard

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

✨ 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