Since Strings in Swift no longer have the .uppercaseString or .lowercaseString properties available, how would i go about performing that function?
If i have for example
The Solution in SwiftUI to uppercase a string
Text("Hello World!".uppercased())
The output would be: "HELLO WORLD!"
To lowercase the string just use this
Text("Hello World!".lowercased())
The output would be: "hello world!"