How to navigate screen on notification open in React Native with One Signal?
问题 Here is my code, how can I navigate user to the desired screen when clicked on a notification or button in a notification. componentWillMount() { OneSignal.addEventListener('received', this.onReceived); OneSignal.addEventListener('opened', this.onOpened); OneSignal.addEventListener('registered', this.onRegistered); OneSignal.addEventListener('ids', this.onIds); OneSignal.inFocusDisplaying(2); OneSignal.requestPermissions({ alert: true, badge: true, sound: true }); } componentWillUnmount() {