firebase foreground notification not exhibiting in react-native ios
const checkToken = async() => { if (Platform.OS === “ios”) { PushNotificationIOS.addEventListener( “notification”, onRemoteNotification ); PushNotification.configure({ onRegister: (token) => {}, onNotification: (notification) => { if ( notification.foreground && (notification.userInteraction || notification.distant) ) { PushNotification.localNotification({ channelId: “fcm_fallback_notification_channel”, largeIcon: “ic_launcher”, bigText: notification ? .message, title: notification ? .title, message: notification ? .message, image: “”, vibrate: true, playSound:…