You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the possibility for local notifications (e.g. as in PushNotificationIOS.presentLocalNotification()) to include threadIdentifier on its details.
Why it is needed
Using the threadIdentifier allows to group notifications together on the notification center
Possible implementation
I'm happy to send a PR, it seems to me it should be as simple as adding the parsing of that parameter on the UILocalNotification object. This would be an iOS only property
(Adding the if statement because I guess that if not explicitly set, iOS sets a "smart" threadIdentifier based on application, title, etc.)
Code sample
PushNotificationIOS.presentLocalNotification({
// should also work with PushNotificationIOS.scheduleLocalNotification
alertTitle: "My threaded local notification"
alertBody: "This will be threaded",
threadIdentifier: "SomeIdentifier"
})
The text was updated successfully, but these errors were encountered:
Feature Request
Add the possibility for local notifications (e.g. as in
PushNotificationIOS.presentLocalNotification()
) to includethreadIdentifier
on itsdetails
.Why it is needed
Using the threadIdentifier allows to group notifications together on the notification center
Possible implementation
I'm happy to send a PR, it seems to me it should be as simple as adding the parsing of that parameter on the UILocalNotification object. This would be an iOS only property
(Adding the if statement because I guess that if not explicitly set, iOS sets a "smart" threadIdentifier based on application, title, etc.)
Code sample
The text was updated successfully, but these errors were encountered: