The Util Designer
SwiftUI 畫圓圈
xcode 13.3.1, swift 5.5, iOS 15.4
2022-07-21
如何在SwiftUI中畫圓圈
首先畫一個寬度為10的紅色圓圈
import SwiftUI

struct CircleExample: View {
    var body: some View {
        Circle()
            .inset(by: 10)
            .stroke(lineWidth: 20)
            .foregroundColor(.red)
    }
}
代碼解釋:
stroke : 圓圈的寬度
foregroundColor : 圓圈的顏色
一個寬度為50的綠色圓圈
import SwiftUI

struct CircleExample: View {
    var body: some View {
        Circle()
            .inset(by: 25)
            .stroke(lineWidth: 50)
            .foregroundColor(.green)
    }
}
圓圈的寬度為50的綠色圓圈