-
Notifications
You must be signed in to change notification settings - Fork 114
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
Router wont navigate back to parent path when nesting stack with dynamic params #744
Comments
@EvanBacon You need to follow these steps:
|
|
allocate.tsx is not under |
@oliviercperrier oh, that's true my bad reading it wrong. |
Which package manager are you using? (Yarn is recommended)
npm
Summary
When nesting multiple Stack with dynamic params, i cant navigate back to the top parent.
For example with this router setup:
(home) -> /orders (Slot) -> /[id] (Stack) -> /products (Stack) -> /[productId] -> /details (Stack)
from
/orders/1/products/1/details
, using a Link or callingrouter.push('/orders/1')
wont do anything.Minimal reproducible example
https://github.com/oliviercperrier/expo-router-mre
The text was updated successfully, but these errors were encountered: