Style views by chaining modifiers
Apply multiple modifiers to a view to adjust typography, color, spacing, and backgrounds.
Example
Demo.swift
ContentView.swift
App.swift
import SwiftUI
struct ModifiersDemo: View {
var body: some View {
Text("Hello")
.font(.title)
.foregroundStyle(.blue)
.padding()
.background(.blue.opacity(0.1))
.cornerRadius(8)
}
}
The example above shows a text view styled with multiple modifiers.
Leave a Reply