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