Replies: 1 comment 5 replies
-
@lucamegh |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
SwiftUI NavigationStack is designed such that you are allowed to define the navigation destination provider at the root of the view hierarchy. Have you considered utilizing the trait system to make
UIViewController.navigationDestination(for:destination:)
behave in a similar manner?This would be helpful in single entry point systems where you have a root
AppViewController
defined.You could potentially provide the destination view controllers for the whole app from a single place.
Beta Was this translation helpful? Give feedback.
All reactions