skip to Main Content

Flutter push notification using flutter_local_notification show white box for some devices how to fix this
Most of the device showing the notification icon correctly but some device have the problem

enter image description here

res/drawable/aaaa_logo.png is the only icon i added

enter image description here

AndroidManifest.xml

enter image description here

enter image description here

2

Answers


  1. Try icon.kitchen for generating icon. Use Monochrome or once with transparent bg for your aaaa_logo.png file.

    Login or Signup to reply.
  2. Add icon inside the drawable folder for notification icon.
    Note: The notification icon which you want to add should be transparent. If the transparent icon is not added, then by default grey icon is getting displayed even you followed all steps properly.

    Try this to generate icon: https://romannurik.github.io/AndroidAssetStudio/icons-notification.html

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search