-
Hi, I want to use default transition for subview transition What i do:
Later, in the new view, i need the default transition for all subviews
What is strange, is the transition are still the .slide one, but when i pop the new view, i have the standard transition. What i'm missing ? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I'm afraid you can't mix and match different transitions on the same As a side note, |
Beta Was this translation helpful? Give feedback.
I'm afraid you can't mix and match different transitions on the same
NavigationStack
. And even if you could, it's a bit of a UX anti-pattern anyway, so it might be worth considering an alternate way of organizing the navigation hierarchy in your app (e.g. by using modals).As a side note,
navigationStackTransition
is deprecated in favor ofnavigationTransition
in the last few versions of the library :)