-
Notifications
You must be signed in to change notification settings - Fork 49
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
Null check in TurboNavRule fails #329
Comments
I've had a problem with that with the app I am currently writing. I trigger it by opening a modal, dismissing it, and then any other link click fails. Crash.mp4The root cause for my issue is here -- commenting this out removes the crash. It looks like the navigator is removing the initial stack entry when the modal is opened. So the history stack becomes empty on dismiss. |
I'm having this issue as well. video.mov |
Hi @scuml @jhutarek As my experience with Android development is limited, would guys have any advice for me in order to overpassing this error until the pr is not approved? |
I'm a bit new as well. I ended up removing the Turbo dependency from gradle.kts, and manually adding the source into my project file - this took some time as I needed to correct namespaces and merge the @jhutarek I'd love to know if there is a simpler way. Any pointers to override/monkey patch would be greatly appreciated. |
Thanks @scuml |
This null check for
NavController#currentBackStackEntry
sometimes fails. Looks like a timing problem with deep links (we might try to navigate before the fragment lifecycle is ready).The text was updated successfully, but these errors were encountered: