美文网首页
iOS-SwiftUI基础-Image

iOS-SwiftUI基础-Image

作者: 蓝不蓝编程 | 来源:发表于2020-06-23 16:08 被阅读0次

    效果图

    代码

    Image(systemName: "clock")
        .foregroundColor(.blue)
        .font(.system(size: 50))
    
    Image("swiftui")
        .resizable()
        .frame(width: 200, height: 200)
        .clipShape(Circle())
        .overlay(Circle().stroke(Color.white, lineWidth: 4))
        .shadow(radius: 10)
    

    源代码

    https://gitee.com/cxyzy1/iOS_ImageDemo

    相关文章

      网友评论

          本文标题:iOS-SwiftUI基础-Image

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