Skip to content

Instantly share code, notes, and snippets.

@srdanrasic
Created December 9, 2017 21:49
Show Gist options
  • Save srdanrasic/668f4d5581ac8154b842d52e28216b82 to your computer and use it in GitHub Desktop.
Save srdanrasic/668f4d5581ac8154b842d52e28216b82 to your computer and use it in GitHub Desktop.
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