I am trying to implement deep linking in my expo-react native app, I have configured linking, but when I open a deep link, it says unmatched route, when I click on go back, the same page loads with out a problem, any help would be appreciable
const prefix = Linking.createURL('/');
const linking = {
prefixes: [prefix],
config: {
screens: {
Invite: 'invite/:id',
},
},
};
<NavigationContainer independent={true} linking={linking}>
<Stack.Navigator>
<Stack.Screen name="Invite" component={myscreen} options={myoptions} />
</Stack.Navigator>
trying to open a screen with deep link, but it gets into unmatched route page
New contributor
upendra g is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.