Image, 顯示環(huán)境相關(guān)圖像的視圖。
Image(systemName: "globe")
截屏2023-06-13 22.39.46.png
我們可以使用新的 SF 符號(hào), 可以為系統(tǒng)圖標(biāo)集添加樣式以匹配您使用的字體
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