Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 1.13 KB

README.md

File metadata and controls

50 lines (36 loc) · 1.13 KB

✨ 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