The Util Designer
SwiftUI內建形狀Shape
xcode 13.3.1, swift 5.5, iOS 15.4
2022-07-18
SwiftUI給我們提供了一些通用的內建Shape,包括長方形、圓解長方形、圓形、橢圓形和膠囊形。
圖形
import SwiftUI

struct CircleExample: View {
    var body: some View {
        Circle()
    }
}
正常模式 Normal Appearance
深色模式 Dark Appearance
橢圓形
import SwiftUI

struct EllipseExample: View {
    var body: some View {
        Ellipse()
    }
}
正常模式 Normal Appearance
深色模式 Dark Appearance
圓角長方形
import SwiftUI

struct RoundedRectangleExample: View {
    var body: some View {
        RoundedRectangle(cornerRadius: 30)
    }
}
正常模式 Normal Appearance
深色模式 Dark Appearance
長方形
import SwiftUI

struct RectangleExample: View {
    var body: some View {
        Rectangle()
    }
}
正常模式 Normal Appearance
深色模式 Dark Appearance
膠囊形
import SwiftUI

struct CapsuleExample: View {
    var body: some View {
        Capsule()
    }
}
正常模式 Normal Appearance
深色模式 Dark Appearance