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
网友评论