I have a simple view with two texts. Its body is like this:
VStack {
Text("One")
Text("Two")
Text("Three")
}
this produces a view like:
But what I would like is, using only modifiers to the Text views (i.e. no HStack with Spacers), achieve a layout like:
Is this currently possible? I was hoping making the Texts full width somehow and then just using the text alignment would work but haven't figured it out yet.


