Open AruAram opened 8 months ago
https://www.npmjs.com/package/react-native-background-actions#deep-linking
Please use this in you navigation setting
const linking = {
prefixes: ['yourSchemeHere://'],
config: {
initialRouteName: 'Login',
screens: {
Login: {
path: 'login'
},
ChatScreen: {
path: 'chat/jane'
}
}
}
}
<NavigationContainer linking={linking} fallback={<></>}
<Stack.Navigator screenOptions={navigationOptions}
</Stack.Navigator>
Hey guys, I need to open the app after I click on the notification. Now it doesn't do anything.
My xml code
my JSX code
Please let me know if you know how i can do it.