Collapse a doubleColumn NavigationView detail in SwiftUI like with collapsed on UISplitViewController?
So when I make a list in SwiftUI, I get the master-detail split view for "free". So for instance with this: import SwiftUI struct ContentView : View { var people = ["Angela", "Juan", "Yeji"] var body: some View { NavigationView { List { ForEach(people, id: \.self) { person in NavigationLink(destination: Text("Hello!")) { Text(person) } } } Text("🤪") } } } #if DEBUG struct ContentView_Previews : PreviewProvider { static var previews: some View { ContentView() } } #endif I get a splitView if an iPad simulator is in landscape, and the first detail screen is the emoji. But if people tap on a name,