flutter_animated_toast 0.0.2
flutter_animated_toast: ^0.0.2 copied to clipboard
A lightweight animated toast widget for Flutter using OverlayEntry with smooth slide animations.
flutter_animated_toast #
A Flutter package to display animated toast messages.
[Demo]
Features #
- Custom animation
- Easy to use
- Lightweight
Usage #
FlutterAnimatedToast.show(
context,
message: "Hello!",
);
// With optional duration (default is 2 seconds)
FlutterAnimatedToast.show(
context,
message: "Hello!",
duration: const Duration(seconds: 3),
);