SwiftUI Quick Tip: Apply Text Transformations

Have you ever wondered how to apply text transformations in SwiftUI, such as small caps, lowercase small caps, or uppercase small caps? It’s actually pretty easy, as all available transformations are available and suggested by Xcode when specifying the font.
Consider the following example that applies the largeTitle font to text:
Text("Hello World!!!")…