Created
July 2, 2020 15:44
-
-
Save jordansinger/c6d96aefb9c7a6b90c72e3831928173b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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