Image, 显示环境相关图像的视图。
Image(systemName: "globe")
截屏2023-06-13 22.39.46.png
我们可以使用新的 SF 符号, 可以为系统图标集添加样式以匹配您使用的字体
Image(systemName: "clock.fill")
Image(systemName: "cloud.heavyrain.fill")
.foregroundColor(.red)
.font(.title)
Image(systemName: "clock")
.foregroundColor(.red)
.font(Font.system(.largeTitle).bold())
截屏2023-06-13 22.41.30.png
给图片添加样式
Image(systemName: "clock.fill")
.resizable() // it will sized so that it fills all the available space
.aspectRatio(contentMode: .fit)
截屏2023-06-13 22.44.26.png
网友评论