위와 같은 UI를 구성하려고한다. 전체코드 var body: some View { VStack{ Text("도형 만들기").font(.largeTitle).fontWeight(.heavy) HStack{ Text("둥근모양").font(.title) Spacer() } ZStack{ Rectangle().frame(height: 10) HStack{ Circle().fill(Color.yellow) Ellipse().fill(Color.green) Capsule().fill(Color.orange) RoundedRectangle(cornerRadius: 30).fill(Color.gray) } } HStack{ Text("각진 모양").font(.title) Spacer() } ZStack{ Rectan..