Among the many properties of the Text view, I couldn\'t find any related to text alignment. I\'ve seen in a demo that it automatically handles RTL, and when pla
Text
I've actually run into the problem where I had to align text on a single line. What I've found to work is this:
Text("some text") .frame(alignment: .leading)
If you combine this with the frame width parameter you can get some nice text block formatting for labels and such.