Skip to content

Instantly share code, notes, and snippets.

@theblixguy
Created October 15, 2019 13:05
Show Gist options
  • Save theblixguy/60a95a0a803e345d348057608a2f3fff to your computer and use it in GitHub Desktop.
Save theblixguy/60a95a0a803e345d348057608a2f3fff to your computer and use it in GitHub Desktop.
// SwiftUI
Text("Hello World").font(.title).color(.red)
// UIKit
let label = UILabel()
label.text = "Hello World"
label.font = .preferredFont(forTextStyle: .title1)
label.textColor = .red
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment