A collection of beautiful animated dialogs.
dependencies:
alertify: "^0.0.2"
import 'package:alertify/alertify.dart';
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();
- Pull requests are welcomed
MIT License