-
Is there an example of how to implement deep linking more than 3 levels deep? is there a reason why navigationPath is not used in swiftui-navigation? if not, can swiftui-navigation replace the use of navigationPath? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
mbrandonw
Jun 28, 2024
Replies: 1 comment 1 reply
-
Hi @maddapper, this library aims to provide the bare essentials of tools to allow one to drive navigation by optionals and enums in SwiftUI. If you need stack-based navigation, then you can just use |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
maddapper
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @maddapper, this library aims to provide the bare essentials of tools to allow one to drive navigation by optionals and enums in SwiftUI. If you need stack-based navigation, then you can just use
NavigationStack
in SwiftUI.