notification_bar 1.0.0 copy "notification_bar: ^1.0.0" to clipboard
notification_bar: ^1.0.0 copied to clipboard

A global, animated, queued notification bar for Flutter apps. Supports top/bottom positioning, multiple styles, and tap-to-navigate actions.

NotificationBar #

A global, animated, queued notification bar for Flutter apps.

✨ Features #

  • 🔝 Top or bottom positioning (configurable per notification)
  • 🎨 Multiple styles: info, warning, success
  • 🔁 Queued notifications (one at a time, next shows after dismissal)
  • 👆 Tap-to-navigate actions
  • 🎬 Smooth slide animations
  • Global access via singleton (NotificationBar().show())

🚀 Installation #

Add to your pubspec.yaml:

yaml #

dependencies: notification_bar: ^1.0.0

Usage #

NotificationBar().show( context: context, message: 'Feature is off. Tap to enable.', style: NotificationStyle.warning, position: NotificationPosition.top, onTap: () => Navigator.push(context, MaterialPageRoute(builder: (_) => const SettingsPage())), );

0
likes
150
points
14
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A global, animated, queued notification bar for Flutter apps. Supports top/bottom positioning, multiple styles, and tap-to-navigate actions.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on notification_bar