aligmentGuide
·
SwiftUI
struct ContentView: View { var body: some View { VStack(alignment: .leading, content: { Text("Hello world!") .background(.blue) .alignmentGuide(.leading, computeValue: { dimension in return 20 }) Text("This is some other text!") .background(.red) }) .background..