Default Adaptable Tab Bar Placement
Specifies the default placement for the tabs in a tab view using the adaptable sidebar style.
Platform Compatibility
iOS 18.0+ iPadOS 18.0+
Tags
SwiftUI Code
TabView {
Tab {
Text("0")
}
Tab("1", systemImage: "1.circle") {
Text("1")
}
Tab("2", image: "cats24x24") {
Text("2")
}
Tab {
Text("3")
} label: {
Label("3", systemImage: "3.circle")
}
}
.tabViewStyle(.sidebarAdaptable)
.defaultAdaptableTabBarPlacement(.tabBar)Found an issue or have a suggestion?
Created: April 11, 2026Updated: April 11, 2026