-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deeplinks are not working #228
Comments
Currently deeplink require manually handle on all platform, for example, in Android you can handle like this: override fun onCreate(savedInstanceState: Bundle?) {
//....
intent.data?.let {
navigator.navigate(it.toString())
}
addOnNewIntentListener {
it?.data?.let {
navigator.navigate(it.toString())
}
}
} |
Yes I agree, the keyword makes people confused, I'm still trying to implement deeplink handling automatically. |
Hello, An for ios how do you do that ? |
People copy-pasting this code, please be careful not to send the deep link event multiple times on activity re-creation. Thus:
|
I've tried to setup deelinking using the
deeplink
field in thescene
for my screen but it's not working for me.Any chance I can please get a link to some documentation on how to set it up?
The text was updated successfully, but these errors were encountered: