I have following text component
Text("45 degree Bicycle Twisting Crunch")
.frame(maxWidth: .infinity, alignment: .leading)
.padding(16)
Which results in multiline split like this
This looks a bit odd, as I would expect word “Twisting” to still appear on that first line. In fact, if I extend this phrase a bit with additional word “Crunch” it indeed behaves as expected i.e
I’d expect first case to behave like this and only word “Crunch” overflowing onto next line. It seems as if SwiftUI tries to split these lines evenly? Is there a way to avoid this?