I want to remove or set the notification icon of my application, what should I do?
I use the flutter_local_notifications package, and there is no property for removing or customizing the badge icon of the application.
I faced the same issue when I integrated my app with 3rd party chatting library, they should send the notification count with the notification data, so we used flutter badger package to control the app badge number.
2
Answers
To remove the notifications, you can handle it like the below image. To update it, you can use the
flutter_app_badger
package as Rami AI Debs said.I faced the same issue when I integrated my app with 3rd party chatting library, they should send the notification count with the notification data, so we used flutter badger package to control the app badge number.