Skip to content

Instantly share code, notes, and snippets.

@jordansinger
Created July 2, 2020 15:44
Show Gist options
  • Select an option

  • Save jordansinger/c6d96aefb9c7a6b90c72e3831928173b to your computer and use it in GitHub Desktop.

Select an option

Save jordansinger/c6d96aefb9c7a6b90c72e3831928173b to your computer and use it in GitHub Desktop.
import SwiftUI
import PlaygroundSupport
struct Symbols: View {
var body: some View {
Image(systemName: "person.crop.circle.fill")
.font(.system(size: 96))
.foregroundColor(.blue)
}
}
PlaygroundPage.current.setLiveView(Symbols())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment