SwiftUI - Shape
·
iOS/SwiftUI
안녕하세요 :D 망고입니다🥭 SwiftUI의 Shape에 대해 알아보겠습니다. shape SwiftUI에는 Circle, Rectangle, Ellipse, Capsule 등의 여러가지 기본 도형들을 제공한다. 이들을 이용해 원하는 모양, 색을 지정해 사용할 수 있다. Circle Circle() .fill(Color.orange) //색상채우기 .foregroundColor(.pink) //색상채우기 .stroke() //테두리 .stroke(Color.red) //테두리색상 .stroke(Color.gray, lineWidth: 30) // 테두리두께 .stroke(Color.orange, style: StrokeStyle(lineWidth: 20, lineCap: .butt, dash: [10]))..