Multiple Paths in NavigationStackStore

We're trying to avoid monolithic Path features and we're trying to break the Path into small chunks with no success

is it possible to have multiple Paths while working with a NavigationStackStore?
or
is it possible to have nested NavigationStackStores?

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.

Just wanted to double check hoping I was missing something

Thanks for your time