Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Notification icon #206

Open
salvatorebnt opened this issue Apr 2, 2021 · 2 comments
Open

Notification icon #206

salvatorebnt opened this issue Apr 2, 2021 · 2 comments

Comments

@salvatorebnt
Copy link

salvatorebnt commented Apr 2, 2021

I'm here to ask you how I can set the icon of the notification. The one up and left of it.
As you can see from the image i attached, there is a grey image and the app name.
Is it possible to replace those segments with a custom image?
I tried with icon property... But it doesnt show up
Here how i manage the notification:

    LocalNotifications.schedule(
        [{
            id: id,
            title: "data.title",
            //subtitle: data.subtitle,
            body: "data.body",
            at: new Date(new Date().getTime() + 1 * 1000),
            badge: 1,
            thumbnail: "res://logo",
            icon: "res://logo",
            notificationLed: new Color("yellow"),
            forceShowWhenInForeground: true
        }])
        .then(() => {
        })
        .catch(error => console.error("exception during schedule notification: " + error));
@MrSnoozles
Copy link

It's not a problem with this library. Probably your icon has the wrong format/ alpha channel / transparency.
Check for example https://documentation.onesignal.com/docs/customize-notification-icons for more info.

@sikemullivan
Copy link

You need to use an icon with transparent background. Every icon is displayed as a gray outline. Every pixel that is not 100% alpha is converted to the gray or white color. Since every pixel is filled in your image, that's why it shows up as a gray square.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants