How to use Checkpoints in my situation. Or maybe not to use Navigator for such scenario ? #35
Unanswered
SolodovnykV
asked this question in
Q&A
Replies: 1 comment 2 replies
-
That's not a use case for checkpoints. Checkpoints return you to a previously visited and named location in the current navigation tree. (A place that you've pushed or presented from.) If you're wanting to switch tabs and go TO a location, that's more of a deep linking/routing problem, which is what navigation send is designed for. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm having an issue with Checkpoint. When I press the button, I want to switch to the Trade tab and pass the market as a parameter using the following code:
I've attached two video examples to show what I'm experiencing. Also, note that I'm trying to use Navigator—even though it might not be necessary—as I really want to integrate it.
The problem is, first of all, that the code for returning to the Trade tab is clearly doing too much. Secondly, if I activate the Trade tab first and then try to navigate from MarketDetail to Trade, the checkpoint exists and the transition happens. However, if the tab hasn’t been activated yet, then the transition does not occur.
One more important detail: my TabView is embedded inside a single ManagedNavigationStack, meaning that there isn’t a separate NavigationStack for each tab. This is how most trading apps work, where the MarketDetail view opens within the main NavigationStack rather than having a separate navigation stack per tab, which is different from what's shown in many examples and Medium articles.
I used the NavigatorDemo and added some simple views and Destinations.
CleanShot.2025-03-10.at.14.52.22.mp4
CleanShot.2025-03-10.at.14.53.18.mp4
Beta Was this translation helpful? Give feedback.
All reactions