Created
December 9, 2017 21:49
-
-
Save srdanrasic/668f4d5581ac8154b842d52e28216b82 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
enum Stylesheet { | |
enum Product { | |
static let title = Style<UILabel> { | |
$0.font = .systemFont(ofSize: 12) | |
$0.textColor = .red | |
$0.numberOfLines = 2 | |
} | |
static let image = Style<UIImageView> { | |
$0.contentMode = .center | |
$0.backgroundColor = .darkGray | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment