This works nicely
NavigationView {
VStack {
...
WrappingHStack { ... }
}
}
.navigationViewStyle(.stack)

but this does not:
NavigationStack {
VStack {
...
WrappingHStack { ... }
}
}

Any ideas why this could be occurring?
I am using the latest code on the void branch.
NavigationView is deprecated in favor of NavigationStack and so it will probably removed in the future, so I'd rather avoid using it.
This works nicely
but this does not:
Any ideas why this could be occurring?
I am using the latest code on the
voidbranch.NavigationViewis deprecated in favor ofNavigationStackand so it will probably removed in the future, so I'd rather avoid using it.