Contents

DatePickerStyle

A type that specifies the appearance and interaction of all date pickers within a view hierarchy.

Declaration

@MainActor @preconcurrency protocol DatePickerStyle

Overview

To configure the current date picker style for a view hierarchy, use the datePickerStyle(_:) modifier.

A type conforming to this protocol inherits @preconcurrency @MainActor isolation from the protocol if the conformance is included in the type’s base declaration:

struct MyCustomType: Transition {
    // `@preconcurrency @MainActor` isolation by default
}

Isolation to the main actor is the default, but it’s not required. Declare the conformance in an extension to opt out of main actor isolation:

extension MyCustomType: Transition {
    // `nonisolated` by default
}

Topics

Getting built-in date picker styles

Creating custom date picker styles

Supporting types

See Also

Styling pickers