When I embed my view's body inside of a NavigationView
I lose all ability to select subviews within the preview window, as well as the reverse ability of selecting code to trigger and display the blue border around the associated subview in the preview. It only shows a blue border around the entire NavigationView
no matter what or where I click. Is this a bug? If not, what am I doing wrong?
Edit: Per the request of the comments below, here is a simple example:
struct FooView: View {
var body: some View {
NavigationView {
VStack {
Label("Try")
Label("Selecting")
Label("These")
}
}
}
}