Picker Divider
A Picker with a Divider
Platform Compatibility
iOS 13.0+ iPadOS 13.0+ macOS 10.15+ watchOS 6.0+ tvOS 13.0+ visionOS 1.0+
Tags
SwiftUI Code
List {
Picker("Foo", selection: $selection) {
Text("1")
.tag("1")
Divider()
Text("2")
.tag("2")
Text("3")
.tag("3")
}
}Found an issue or have a suggestion?
Created: April 4, 2026Updated: April 4, 2026