Image

134 阅读1分钟
  • Image
Image("imageName")
  • 自适应大小 图片没有完全显示全 可以用Image的resizable()来让图片自动适应
.resizable()
  • 忽略安全区域 全屏显示
.edgesIgnoringSafeArea(.all)
.ignoresSafeArea()
  • 等比缩放
.scaledToFit()
  • 设置宽高
.frame(width: 300)
  • 裁剪为圆
.clipShape(Circle())
  • 透明度
.opacity(0.2)
  • 添加其他视图 如下添加文本
.overlay {
    Text("编辑")
        .font(.largeTitle)
        .foregroundColor(.red)
}