Created
December 6, 2020 00:00
-
-
Save SlappyAUS/7c3052e6bf29485c0b00ceac7a37b23e to your computer and use it in GitHub Desktop.
Enums as Images #swift #enum
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
| enum SFSymbols { | |
| static let location = UIImage(systemName: "mappin.and.ellipse") | |
| static let repos = UIImage(systemName: "folder") | |
| static let gists = UIImage(systemName: "text.alignleft") | |
| static let followers = UIImage(systemName: "heart") | |
| static let following = UIImage(systemName: "person.2") | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment