Layout 1. Frame() 프레임은 고정된 크기의 레이아웃을 지정할 때 사용한다. import SwiftUI struct Layout: View { var body: some View { VStack { Text("Hello World!") .background(Color.blue) Text("Hello SwiftUI!") .frame(width: 200, height: 300, alignment: .center) .background(Color.purple) Text("Let's learn SwiftUI") .frame(minWidth: 200, maxWidth: 300, minHeight: 100, maxHeight: 200, alignment: .center) .background(Color...