I have Implemented Deep Linking in react native. My routing is done like this.
AuthNavigator (Stack Navigator)
- Login
- Signup
- Home (Stack Navigator)
Home navigator (Stack Navigator)
- EquipmentBooking
- EquipmentStatus
I want to navigate to EquipmentStatus screen
, so I created deep linking config like this
const config = {
screens: {
Home: {
screens: {
EquipmentStatus: 'equipmentstatus'
}
}
}
}
but when I click on the notification, it is opening the app (when it is closed) but it's not navigating to a particular screen. when the app is in open, it does nothing.
so can anyone suggest to me how to write a deep linking config for this scenario?