You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this project!
I'm interested in the following functionality:
Consider, we have a list of views in the stack: [Z, A, B, C]
I'd like to reset stack completely to have new view hierarchy as [Z, X] by e.g. pressing a button in the view C.
Is this possible as of right now?
The text was updated successfully, but these errors were encountered:
Hey @richardtop, there are technically two solutions to achieve that:
Remove A, B and C from the stack and push X or replace the existing stack with [Z, X].
The easier and probably more elegant solution (at least from a UI perspective) is to simply set the new stack animated.
Thanks for this project!
I'm interested in the following functionality:
Consider, we have a list of views in the stack:
[Z, A, B, C]
I'd like to reset stack completely to have new view hierarchy as
[Z, X]
by e.g. pressing a button in the viewC
.Is this possible as of right now?
The text was updated successfully, but these errors were encountered: