Using Xcode beta 6 and SwiftUI, creating a Text
view using a >localized< string, how can I uppercase it without having to make the localized string value uppercased? I guess I want a ViewModifier
for changing case, but it does not seem to exist?
Text("SignIn.Body.Instruction".uppercased())
will uppercase the localization key, so that will not work, as instructed in this SO question about uppercasing a non-localized string.