美文网首页
SwiftUI(3)图形-Shapes

SwiftUI(3)图形-Shapes

作者: Z小新 | 来源:发表于2023-03-07 12:05 被阅读0次
Circle() // 圆形
      .stroke(style: StrokeStyle(lineWidth: 20,lineCap: .square,dash: [30]))
image.png
 Circle() // 圆形
            .stroke(style: StrokeStyle(lineWidth: 20,lineCap: .butt,dash: [30]))
            .fill(Color.orange)// 填充颜色
image.png
 Circle() // 圆形
            .stroke(style: StrokeStyle(lineWidth: 20,lineCap: .round,dash: [30]))
//            .fill(Color.orange)// 填充颜色
            .foregroundColor(Color.red)// 前景颜色
image.png
 Ellipse()// 椭圆
            .fill(Color.orange)// 填充颜色
            .frame(width: 200,height: 100)
image.png
 Capsule(style: .circular)// 胶囊
            .fill(Color.orange)// 填充颜色
            .frame(width: 200,height: 100)
image.png
Rectangle()//矩形
.fill(Color.orange)// 填充颜色
            .frame(width: 200,height: 100)
image.png
RoundedRectangle(cornerRadius: 20)// 圆角矩形
.fill(Color.orange)// 填充颜色
            .frame(width: 200,height: 100)
image.png
RoundedRectangle(cornerRadius: 20)// 圆角矩形
            .trim(from: 0.2,to: 1.0)// 修建
            .fill(Color.orange)// 填充颜色
            .frame(width: 200,height: 100)
image.png
 Circle() // 圆形
            .trim(from: 0.0,to: 0.8)// 修建
            .stroke(Color.orange,lineWidth: 15)
image.png
Circle() // 圆形
.trim(from: 0.5,to: 1.0)// 修建
            .fill(Color.orange)// 填充颜色
            .frame(width: 200,height: 200)
image.png

相关文章

网友评论

      本文标题:SwiftUI(3)图形-Shapes

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