๐Ÿ”ฐshapes

SwiftUI โŸฉ shapes

Circle()
    .fill(Color.red)                // Shape's method
    .frame(width: 50, height: 50)   // View's method (view modifier)

Last updated

Was this helpful?