I'm aware it's possible to manipulate sidebar width for a NavigationSplitView like this.-
NavigationSplitView { Text("Sidebar") .navigationSplitViewColumnWidth(min: 100, ideal: 200, max: 300) } content: { Text("Content") .navigationSplitViewColumnWidth(min: 100, ideal: 200, max: 300) } detail: { Text("Detail") } But my main view includes a simple NavigationView (just a side bar and content), and it seems there's no api for specifying width in this case. Any known way to get the same effect in this scenario?
NavigationSplitView, but as stated in the question I'm working on a 2 column layout, which is what I get with theNavigationView.