From ba11b8c842fc588e6dc11c195f726a6d70c98ae0 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 12 Apr 2024 16:33:21 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9D=BC=EC=9D=B4=EB=B8=8C=20=EC=8B=9C?= =?UTF-8?q?=EA=B7=B8=EB=8B=88=EC=B2=98=20=ED=9B=84=EC=9B=90=20=EC=9C=84?= =?UTF-8?q?=EC=B9=98=20-=20=EA=B8=B0=EC=A1=B4=20=ED=95=98=EB=8B=A8=20?= =?UTF-8?q?=EA=B0=80=EC=9A=B4=EB=8D=B0=EC=97=90=EC=84=9C=20=EA=B0=80?= =?UTF-8?q?=EC=9A=B4=EB=8D=B0=20=EC=9A=B0=EC=B8=A1=EC=9C=BC=EB=A1=9C=20?= =?UTF-8?q?=EC=9D=B4=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Sources/Live/Room/V2/LiveRoomViewV2.swift | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift b/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift index 15bf8d7..c4a8be3 100644 --- a/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift +++ b/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift @@ -259,16 +259,19 @@ struct LiveRoomViewV2: View { } if viewModel.signatureImageUrl.trimmingCharacters(in: .whitespacesAndNewlines).count > 0 { - VStack(spacing: 0) { + HStack { Spacer() - AnimatedImage(url: URL(string: viewModel.signatureImageUrl)) - .resizable() - .aspectRatio(contentMode: .fit) - .frame(height: 300) - .frame(maxWidth: .infinity) - .padding(.horizontal, 20) - .padding(.bottom, 65) + VStack(alignment: .trailing, spacing: 0) { + Spacer() + + AnimatedImage(url: URL(string: viewModel.signatureImageUrl)) + .resizable() + .aspectRatio(contentMode: .fit) + .frame(height: 200) + + Spacer() + } } } }