Skip to content

Instantly share code, notes, and snippets.

View lutluthfi's full-sized avatar

Arif Luthfiansyah lutluthfi

  • 00:26 (UTC -12:00)
View GitHub Profile
@lutluthfi
lutluthfi / Calendar.swift
Created April 25, 2022 13:36 — forked from mecid/Calendar.swift
SwiftUI Calendar view using LazyVGrid
import SwiftUI
fileprivate extension DateFormatter {
static var month: DateFormatter {
let formatter = DateFormatter()
formatter.dateFormat = "MMMM"
return formatter
}
static var monthAndYear: DateFormatter {