How to make SwiftUI button label uppercase – Ios swift
Is it possible to transform that text of a label in a SwiftUI button to uppercase using a style? struct UppercaseButtonStyle: ButtonStyle { func makeBody(configuration: Configuration) -> some View { configuration.label .makeUppercase() // ? } }