I am trying to align an Image in the first body view to the top but can not find a way to do this. I want set an alignment to .top like you would do in a ZStack, like this:
ZStack(alignment: .top) {
Image("imagename")
Text("Test")
}
In this code the text, in front of the image, would be at the top. How would I do the same but the image is the body view and the text is the image.
