diff --git a/AsyncSwift/Views/StampView.swift b/AsyncSwift/Views/StampView.swift index f056ec8..03a0031 100644 --- a/AsyncSwift/Views/StampView.swift +++ b/AsyncSwift/Views/StampView.swift @@ -40,6 +40,8 @@ private extension StampView { @ViewBuilder var stampBack: some View { Image("Seminar002StampBack") + .resizable() + .aspectRatio(contentMode: .fit) .shadow(color: Color(.sRGB, red: 0, green: 0, blue: 0, opacity: 0.2), radius: 20, x: 0, y: 4) //TODO: 디자인 수정 사항이 있습니다. .rotation3DEffect(Angle(degrees: frontDegree), axis: (x: 0, y: 1, z: 0)) } @@ -47,6 +49,8 @@ private extension StampView { @ViewBuilder var stampFront: some View { Image("Seminar002StampFront") + .resizable() + .aspectRatio(contentMode: .fit) .shadow(color: Color(.sRGB, red: 0, green: 0, blue: 0, opacity: 0.2), radius: 20, x: 0, y: 4) //TODO: 디자인 수정 사항이 있습니다. .rotation3DEffect(Angle(degrees: backDegree), axis: (x: 0, y: 1, z: 0)) }