I want my application to always show in a notification .It should be undismissable and it should be shown on notification bar always even app is off.
CodePudding user response:
Try flutter_local_notifications plugin.
CodePudding user response:
If you didn't find a plugin that satisfies your needs, just implement it on the native side.
Flutter is a UI framework. Use it as such.
Plugins wrap native capabilities and encapsulate them, but feel free to add native code that suits your needs.