SwiftUI forms: DatePicker
New Courses Coming Soon
Join the waiting lists
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:
Tapping on each different part (date or time) will show a dedicate picker UI element:
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")
}
or just the time:
DatePicker(selection: $dateChosen, in: ...Date(), displayedComponents: .hourAndMinute) {
Text("Pick a date and time")
}
→ Get my Swift Handbook
Here is how can I help you:
- COURSES where I teach everything I know
- CODING BOOTCAMP cohort course - next edition in 2025
- THE VALLEY OF CODE your web development manual
- BOOKS 17 coding ebooks you can download for free on JS Python C PHP and lots more
- Interesting links collection
- Follow me on X