0
將react-native-fcm用於推送通知。通知到來時,它不會重定向到另一個組件。它不會等待用戶點擊。等待用戶單擊react-native-fcm中的通知
FCM.on("FCMNotificationReceived", (notif) => {
console.log("Notification", notif);
if(notif.click_action === "ACTION"){
Actions.login()
}
}