📜  swiftui 裁剪图像 - Swift 代码示例

📅  最后修改于: 2022-03-11 15:01:03.789000             🧑  作者: Mango

代码示例1
// add negative padding to crop containing view-frame (for layout)
Image("pause")
    .resizable()
    .aspectRatio(contentMode: .fit)
    .frame(height: 50.0)
    .padding(-5)