React Native - How to open route from push notification
问题 I'm using react-navigation and react-native-push-notification . How can I open a certain StackNavigator's screen in onNotification callback? Should work when: app is closed app is in the foreground app is in the background I only need it working in Android for now. I've tried to pass a callback function to notification in my component: _handleClick() { PushNotification.localNotification({ foreground: false userInteraction: false message: 'My Notification Message' onOpen: () => { this.props