Replies: 1 comment
-
Hi @rtpm did you figure out a way to solve these issues? I'm facing a similar problem currently |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
My app (expo-router v. 1.5.1) is built on top of 2 Tab Stacks. In the main app directory there' s notificationScreen.tsx which renders user notifications from the icon at the top of the header bar. There are 2 tabs:
In the notification there's a button so when clicked it should redirect to order details which points to:
/products/productid/details/
router = useRouter() from expo-router
router.push('/products/30456/details')
(the same for replace)
It works fine if I open notifications and press the notification button while being in the "products" stack.
When I do while "being" in "orders" stack, I am redirected to the proper screen, but no "Back" header button is available.
It doesn't matter which screen should the "Back button" point to. if it just didn't block the "products" stack as I can not move anywhere else there.
Can this be done somehow?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions