美文网首页
SwiftUI 渐变色, 字体, 圆环,

SwiftUI 渐变色, 字体, 圆环,

作者: yytmzys | 来源:发表于2023-05-28 00:59 被阅读0次

    渐变圆环

    Circle()
            .stroke(LinearGradient(gradient: Gradient(colors: [Color(.green), Color(.red)]), startPoint: .top, endPoint: .bottom), style: StrokeStyle(lineWidth: 3, lineCap: .round, lineJoin: .round)
                      )
            .frame(width: 140, height: 140)
    

    字体渐变, foregroundStyle

    Text("\(self.bpm)")
              .font(Font.system(size: 40))
              .foregroundStyle(
                    LinearGradient(
                      colors: [.red, .green],
                      startPoint: .topLeading,
                      endPoint: .bottomTrailing
                    )
                  )
    
    ZStack {
          // 821CED, E7166B
          Circle()
            .stroke(LinearGradient(gradient: Gradient(colors: [Color(.green), Color(.red)]), startPoint: .top, endPoint: .bottom), style: StrokeStyle(lineWidth: 3, lineCap: .round, lineJoin: .round)
                      )
            .frame(width: 140, height: 140)
          
          VStack {
            Text("BMP")
              .font(Font.system(size: 12))
              .foregroundColor(.white)
            
            Text("\(self.bpm)")
              .font(Font.system(size: 40))
              .foregroundStyle(
                    LinearGradient(
                      colors: [.red, .green],
                      startPoint: .topLeading,
                      endPoint: .bottomTrailing
                    )
                  )
          }
    
    截屏2023-05-29 00.59.07.png

    相关文章

      网友评论

          本文标题:SwiftUI 渐变色, 字体, 圆环,

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