Deep Linking
Step 1: Consult Documentation
Step 2: Processing Deep Links While the App is Running
Step 3: Handling Deep Links on iOS When the App is Killed
useEffect(() => {
Netmera.getInitialURL().then(url => {
if (url) {
Toast.show({
type: 'success',
text1: `Initial URL: ${url}`,
});
}
});
}, []);Additional Resources
Last updated
Was this helpful?