Home > AI > IOS > SwiftUI >

Image

Example 1:

Image(systemName: "pencil")
            .resizable()
            .aspectRatio(contentMode: .fit)
            .frame(width: 100, height: 100, alignment: .center)
            .clipShape(Circle())
            .shadow(radius: 50)
            .overlay(Circle().stroke(Color.red, lineWidth: 5))

Leave a Reply