Skip to content
FLAVIO COPES
flaviocopes.com
2026

SwiftUI forms: DatePicker

By Flavio Copes

Learn how to use the DatePicker control in SwiftUI to let users pick a date and time, and how displayedComponents limits it to just the date or time.

~~~

The DatePicker form control in SwiftUI lets us create a .. date picker.

How does it work?

First we create a property of type Date:

@State private var dateChosen = Date()

We use @State so that we can modify this value from our DatePicker view

Then we link that property to the DatePicker view:

DatePicker(selection: $dateChosen, in: ...Date()) {
    Text("Pick a date and time")
}

Here’s how it looks:

iOS simulator showing SwiftUI DatePicker form with date and time fields displaying Sep 23, 2021 8:21 PM

Tapping on each different part (date or time) will show a dedicate picker UI element:

Date picker showing calendar view for September 2021 with day 23 highlighted in blue

Time picker showing hour and minute selection wheels with 8:21 PM selected

Here’s the full code of this example:

struct ContentView: View {
    @State private var dateChosen = Date()

    var body: some View {
        Form {
            DatePicker(selection: $dateChosen, in: ...Date()) {
                Text("Pick a date and time")
            }
        }
    }
}

You can choose to only show one particular element of the date with the displayedComponents property, like just the date:

DatePicker(selection: $dateChosen, in: ...Date(), displayedComponents: .date) {
    Text("Pick a date and time")
}

DatePicker with displayedComponents set to date only, showing Sep 23, 2021 without time

or just the time:

DatePicker(selection: $dateChosen, in: ...Date(), displayedComponents: .hourAndMinute) {
    Text("Pick a date and time")
}

DatePicker with displayedComponents set to hourAndMinute only, showing 8:23 PM without date

Tagged: Swift · All topics
~~~

Related posts about swift: