Nested dynamic routes

SDK Version: 0.10.12
Expo Version: 49.0.11
Platforms: Android/web

Hi, I’m trying to create a dynamic route inside another dynamic route, but I couldn’t get it to work and couldn’t find anything about it also (using Expo Router v2).
The folder structure should be as following:
/app
|–/store
|–[storeId].tsx
|–/product
|–[productId].tsx

I can access the /store/:storeId route and get the id for the store, but can’t access /store/:storeId/product/:productId

This is the code to redirect:
router.push(/store/${storeId}/product/${productId});

I’ll provide any information required to help

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.