通知打开时,React导航会打开一个意图

时间:2019-05-16 18:06:46

标签: javascript react-native android-notifications react-navigation react-native-firebase

this.notificationOpenedListener = firebase
    .notifications()
    .onNotificationOpened(notificationOpen => {
        const { title, body } = notificationOpen.notification;
        id = notificationOpen.notification.data.id
        # Here I want to go to My deeplink "traveller://place/:id"
        # The deeplink is working 
});

这是notificationOpenedListener的代码。我想导航到带有通知ID的意图。如何使用反应导航。谢谢

0 个答案:

没有答案