I am not sure why, but VStack won't center images or text all of a sudden. I have tried to use the VStack(alignment:.center) but with no success.
struct ContentView: View {
var body: some View {
NavigationView {
GeometryReader { geo in
Group{
VStack() {
Image(systemName: "car.fill")
}
}
}
}
}
}
My understanding is that this should center. At least all the documents say it should center.