Why is the default alignment of a SwiftUI List so wacky? How do I get the text to left align?
My current code:
NavigationStack {
List {
ForEach(users) { user in
VStack {
Text(user.name)
.font(.headline)
Text(user.description)
}
}
}
.navigationTitle("Profiles")
}