Swift Set Image Size

[Solved] Swift Set Image Size | Swift - Code Explorer | yomemimo.com
Question : increase the size of the image in Swiftui

Answered by : crowded-chamois-semk0fnv5z8x

struct ResizedImage: View { var body: some View { Image("myImage") .resizable() .scaledToFit() .frame(width: 200.0,height:200) }
}

Source : https://stackoverflow.com/questions/56505692/how-to-resize-image-with-swiftui | Last Update : Thu, 15 Apr 21

Answers related to swift set image size

Code Explorer Popular Question For Swift