Does the React Native SDK have any possibility to suppress notifications (based on category) while the app is in foreground or do you have plans for implementing that to the React Native SDK?
Something like:
Notifications.setNotificationHandler({
handleNotification: async (notification: Notification): Promise<NotificationBehavior> => {
return {
shouldShowAlert: false,
shouldPlaySound: false,
shouldSetBadge: false
};
});
});
Thank you in advance!