I'm looking for format a text to automatically capitalise the first letter of every word
Text("hello world")
Will show as:
Hello World
I'm looking for format a text to automatically capitalise the first letter of every word
Text("hello world")
Will show as:
Hello World
Any Swift (NS)String API can be used also in SwiftUI
Text("hello world".capitalized)