Answers for "change image height and width swiftUI"

7

set image width and height swiftui

Image(room.thumbnailImage).resizable()
.frame(width: 32.0, height: 32.0)
Posted by: Guest on March-13-2020
0

increase the size of the image in Swiftui

struct ResizedImage: View {
    var body: some View {

            Image("myImage")
                .resizable()
                .scaledToFit()
                .frame(width: 200.0,height:200)

    }
}
Posted by: Guest on April-08-2021

Code answers related to "change image height and width swiftUI"

Code answers related to "Swift"

Browse Popular Code Answers by Language