I am wanting to access a screen in my app project, by mobile, through a URL that was sent to the email.
The project is being developed at the expo and I am trying to use the "linking" of the same expo, I consulted the expo documentation about linking (https://docs.expo.io/versions/latest/workflow/linking/), but couldn't make the exact screen open.
In app.json looks like this:
"expo": {
"scheme": "myApp",
}
In the route I left:
ExchangePassword : {
screen: ExchangePassword ,
path: "exchangePassword /"
}
I'm trying to access through a URL like this
<a href="myApp://ExchangePassword"> Click Here </a>
But when I access the link on the phone it opens the main project screen and not the password change screen.