Taehyeon-Kim / Taehyeon-Kim.github.io

The life of recording is unbreakable
https://taehyeon-kim.github.io
MIT License
1 stars 0 forks source link

SwiftUI101: AttributedString #2

Open Taehyeon-Kim opened 10 months ago

Taehyeon-Kim commented 10 months ago
struct ContentView: View {
  var message: AttributedString {
      var result = AttributedString("Hello, world!")
      result.font = .largeTitle
      result.foregroundColor = .white
      result.backgroundColor = .red
      return result
  }

  var body: some View {
      Text(message)
  }
}