๐Ÿ”ฐrendering modifier

โ•ฑ๐Ÿšง under construction

SwiftUI โŸฉ view โŸฉ modifier โŸฉ rendering modifier

Scale or mask a view, or apply graphical effects to a view.

Text("Clipped text in a circle")
    .frame(width: 175, height: 100)
    .foregroundColor(Color.white)
    .background(Color.black)
    .clipShape(Circle())            // โญ๏ธ rendering modifier 

Last updated