It is possible using Swift to create an uppercase version of a String with
let str = "Hello World!"
print(str.uppercased())
This code will print "HELLO WORLD!" into the Xcode console. But how do you create an uppercase of a String like the following using SwiftUI?
Text("Hello World!")