Skip to content

Instantly share code, notes, and snippets.

@dsmailes
dsmailes / DayMonthView.swift
Last active April 1, 2023 10:31
Current Day and Month calendar style view for SwiftUI with Date() extension to retrieve the values as strings.
struct DayMonthView: View {
@State var monthString = Date().getMonthString()
@State var dayString = Date().getDayString()
var body: some View {
VStack {
Text(monthString)
.foregroundColor(Color.red)