Incomming Links

suggest change

You can detect when your app is launched from an external URL.

componentDidMount() {
  const url = Linking.getInitialURL()
  .then((url) => {
    if (url) {
      console.log('Initial url is: ' + url)
    }
  }).catch(err => console.error('An error occurred ', err))
}

To enable this on iOS Link RCTLinking to your project.

To enable this on Android, follow these steps.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Linking Native API:
*Incomming Links

Table Of Contents