A customizable swiftui calendar
DateGrid
A customizable swiftui calendar.
Description not available.
DateGrid(interval: dateInterval , selectedMonth: $selectedMonthDate, mode: .month(estimateHeight: 400)) { date in
Text(date.day)
.padding(8)
.background(Color.blue)
.cornerRadius(8)
.padding([.bottom], 10)
}