Contents

TabsPickerStyle

A picker style that presents options as segmented tabs.

Declaration

struct TabsPickerStyle

Overview

On macOS, this style produces a segmented picker with a visual treatment that distinguishes tab navigation from value selection. On iOS, tvOS, and visionOS, the visual appearance matches that of the standard standard .segmented style. On all supported platforms, VoiceOver announces options as tabs.

Picker("View", selection: $view) {
    Text("Events").tag(Views.events)
    Text("Reminders").tag(Views.reminders)
}
.pickerStyle(.tabs)

To apply this style to a picker, or to a view that contains pickers, use the pickerStyle(_:) modifier.

You can also use tabs to construct this style.

Topics

Creating the picker style

See Also

Supporting types