I've got a very basic view with a label in it in SwiftUI and I'm struggling to get it to align to the left. This is what it is:
VStack(alignment: .leading) {
Label("Hi", ...)
}
.frame(maxWidth: .infinity)
No matter what I've tried the label stays in the center of the view. How can I fix this?