establecer el ancho de la imagen y la altura swiftui
Image(room.thumbnailImage).resizable()
.frame(width: 32.0, height: 32.0)
Mobile Star
Image(room.thumbnailImage).resizable()
.frame(width: 32.0, height: 32.0)
VStack {
GeometryReader { geo in
Image("Example")
.resizable()
.aspectRatio(contentMode: .fit)
.frame(width: geo.size.width, height: 300)
}
}