From 3d8c77cecf2344cbccccb076ae8062b0ddf51753 Mon Sep 17 00:00:00 2001 From: E-know Date: Fri, 9 Sep 2022 02:37:37 +0900 Subject: [PATCH] [Fix] iPhone SE 3rd Resolution Troubleshooting --- AsyncSwift/Views/StampView.swift | 4 ++++ 1 file changed, 4 insertions(+) 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)) }