如何使用 SwiftUI 调整图像大小?

 

问题描述:

我在 Assets.xcassets 中有一张大图。如何使用 SwiftUI 调整此图像的大小以使其变小?

我试图设置框架,但它不起作用:

Image(room.thumbnailImage)
    .frame(width: 32.0, height: 32.0)

 

第 1 个答案:

您应该.resizable()在对Image.

Image(room.thumbnailImage)
    .resizable()
    .frame(width: 32.0, height: 32.0)

我知道 Android 6.0 有新权限,我知道我可以用这样的方式调用它们if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRI ...