Hi @jecht83, no this is not possible as vanilla SwiftUI does not support nested navigation stacks. If you want a statically typed navigation path then you have no choice but to integrate all the features together into a single unit.
If you truly need to break features apart, then you can use the type erased NavigationPath type in SwiftUI, but then your features will no longer be integrated together.
Hi @mbrandonw,
I wanted to inquire whether SwiftUI supports nested navigation stacks, as I'm working on a similar project that requires creating micro features and integrating them into a single app.
If SwiftUI doesn't support nested navigation stacks, then do you have any recommendations for workarounds?