Given this code :
import SwiftUI struct ContentView : View { var body: some View { VStack(alignment: .leading) { Text(\"Title\")
A good solution and without "contraptions" is the forgotten ZStack
ZStack
ZStack(alignment: .top){ Color.red VStack{ Text("Hello World").font(.title) Text("Another").font(.body) } }
Result: