I'm new to SwiftUI, and struggling to figure out what seems like should be a very easy thing to do.
Let's say I have a HStack with two images. I want one image to always be anchored to the top left of the area and one images to always be anchored to the top center.
I think most peoples' first thought is "easy, just add a Spacer() after the second image." That doesn't keep the center image centered.
I have resorted to making two VStacks inside a ZStack, and each VStack has one image with a Spacer() below it to make the images align at the top like I want, and the VStack for the top-left image has an HStack inside so I can add a Spacer() to force it to align left.
This seems extremely hacky just to have two images with two basically anchoring points, and isn't very flexible as far as putting it into a new swift view class to modularize it since the whole thing relies on the full height of the screen.