SwiftUI GeometryReader 자신의 크기와 좌표 공간을 기반으로 콘텐츠를 정의하는 컨테이너 뷰.이 자체가 뷰라서 이를 기반으로 좌표 정보를 얻을 수 있음. (링크)https://developer.apple.com/documentation/swiftui/geometryreader GeometryReader | Apple Developer DocumentationA container view that defines its content as a function of its own size and coordinate space.developer.apple.com 샘플 코드import SwiftUIenum Index { case one, two, three}struct MyGeomet..