美文网首页
SwiftUI Image

SwiftUI Image

作者: yytmzys | 来源:发表于2023-06-12 22:53 被阅读0次

    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

    相关文章

      网友评论

          本文标题:SwiftUI Image

          本文链接:https://www.haomeiwen.com/subject/aqoqydtx.html