i use ionic 4 capacitor to show local notification which i found documentation on there website but documentations are not complete this is their link ionic capacitor local notification documentation
It is working but i don't know how to show image and how to change the icon. i tried a lot of thing.
Is there anyone who tested it and can help me?
this is my code already
LocalNotifications.schedule({
notifications: [
{
title: "aaaa",
body: "Body",
id: 1,
actionTypeId: 'OPEN_PRODUCT',
attachments: [
{ id: 'face', url: 'https://khanoo.com/wp-content/uploads/estate_images/house/77-1576179614/230174.jpg' ,options:{}}
],
schedule: {
every: "minute"
},
extra: null
}
]
});