i am stucked here to align image in VStack

VStack{
                Image("cropped_image")
                    .resizable()
                    .frame(width: 240, height: 250, alignment: .bottomLeading)
            }
            .edgesIgnoringSafeArea(.all)
.position(x: 25,y: [25)]
the image is not setting at center of the image
What alignment are you exactly looking for ? Center to what ?

To center in its frame:

Code Block
Image("Sacropped_image")
.resizable()
.scaledToFit()
.frame(width: 240, height: 250, alignment: .center)
.border(Color.red, width: 4)

i am stucked here to align image in VStack
 
 
Q