Is this style of Settings available in SwiftUI on macOS 26?
I'm not looking for an approximation with NavigationSplitView. I want the sidebar with stoplights and the back/forward arrows in the detail view.
Is this style of Settings available in SwiftUI on macOS 26?
I'm not looking for an approximation with NavigationSplitView. I want the sidebar with stoplights and the back/forward arrows in the detail view.
@stroughtonsmith Ouch. I thought migrations like this was part of the motivation for SwiftUI: we define what we want, Apple defines how it looks, so our apps can adopt modern appearances. I mean, this should just be
Settings {
TabView {
// …
}
.tabViewStyle(.sidebarAdaptable)
}
but it's not.