How to show headsup notification and badge in xamarin form android, I am using firebase push notification.It shows heads up notification and badge count in some devices like Redmi 6 pro etc..., I have tried this link to implement push notification :-https://github.com/CrossGeeks/FirebasePushNotificationPlugin . And my json payload is like this.
{
"to":"push-token",
"priority": "high",
"notification": {
"title": "Test",
"body": "Mary sent you a message!",
"sound": "default",
"icon": "youriconname"
}
}
And it's working fine in iOS when app is in the killed state and app is in the background.And not getting when the app is open.
How to do this,Please help me...