Picker Section

A Section inside a Picker

Picker Section - iOS Liquid Glass Light Mode Preview

Platform Compatibility

iOS 13.0+ iPadOS 13.0+ macOS 10.15+ watchOS 6.0+ tvOS 13.0+ visionOS 1.0+

Tags

SwiftUI Code

Docs
List {
    Picker("Foo", selection: $selection) {
        Text("1")
            .tag("1")

        Section("Bar") {
            Text("2")
                .tag("2")
        }
        Text("3")
            .tag("3")
    }
}

Found an issue or have a suggestion?

Created: April 4, 2026Updated: April 4, 2026