koukibadr / Elegant-Notification

https://pub.dev/packages/elegant_notification
MIT License
46 stars 30 forks source link

Can I dismiss the current notification before showing the new one? #131

Open rt234cw opened 1 month ago

rt234cw commented 1 month ago

In some scenarios, the user might trigger notifications multiple times within seconds, which results in showing too many notifications.

Is there a way to dismiss the current notification before showing another one, similar to how it works with the ScaffoldMessenger?

ScaffoldMessenger.of(context)..removeCurrentSnackBar()..showSnackBar(SnackBar(
content: Text('$title\n' 'copied to clipboard'), ),);