gistlib
main.swiftimport SwiftUI struct ContentView: View { var body: some View { Image(systemName: "leaf.arrow.circlepath") .resizable() .frame(width: 100, height: 100) } } 197 chars10 lines
import SwiftUI struct ContentView: View { var body: some View { Image(systemName: "leaf.arrow.circlepath") .resizable() .frame(width: 100, height: 100) } }
gistlibby LogSnag