How do I show the whole month name and not 3 letters?

Hello, How do I show the whole month name and not just 3 letters?

import SwiftUI



struct ContentView: View {

    @State var dateString = ""

    var body: some View {

        VStack {

            Image(systemName: "globe")

                .imageScale(.large)

                .foregroundColor(.accentColor)

            Text(dateString)

        }

        .onAppear{

            dateString = Date.now.formatted(.dateTime.month().day().year())

        }

    }

}
Accepted Answer

Pass in .wide as the parameter for the month method, like this:

.month(.wide)
How do I show the whole month name and not 3 letters?
 
 
Q