Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 282 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 282 Bytes

HDatePicker

Precise recreation of the horizontal date picker from the iOS calendar app.

Usage

import HDatePicker

struct ContentView: View {
    @State var selectedDay: Date = .now

    var body: some View {
        HDatePicker(selectedDay: $selectedDay)
    }
}