From c530caa92b35c5cf10c51ab75ddf6d53f218790e Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Wed, 30 Oct 2024 14:19:02 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9D=BC=EC=9D=B4=EB=B8=8C=EB=B0=A9=20-=20?= =?UTF-8?q?=EB=A9=94=EB=89=B4=ED=8C=90=20=EC=9C=84=EC=B9=98=20-=20?= =?UTF-8?q?=EB=A9=94=EB=89=B4=ED=8C=90=20=EB=B2=84=ED=8A=BC=20=EC=97=90?= =?UTF-8?q?=EC=84=9C=20=EB=B2=97=EC=96=B4=EB=82=98=EB=8D=98=20=EB=B2=84?= =?UTF-8?q?=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift b/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift index a1c0778..5aae49c 100644 --- a/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift +++ b/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift @@ -334,8 +334,8 @@ struct LiveRoomViewV2: View { if viewModel.isShowMenuPan { VStack(alignment: .leading, spacing: 0) { Image("ic_notice_triangle") - .padding(.leading, 60) - ScrollView(.vertical, showsIndicators: false) { + + ScrollView(.vertical) { VStack(alignment: .leading, spacing: 8) { Text("[메뉴판]") .font(.custom(Font.bold.rawValue, size: 11.3)) @@ -349,16 +349,16 @@ struct LiveRoomViewV2: View { .background(GeometryReader { geometry in Color.clear.preference(key: TextViewHeightKey.self, value: geometry.size.height) }) + .padding(8) } - .padding(8) .background(Color.gray33) - .padding(.horizontal, 60) - .frame(maxWidth: 350) - .frame(height: menuTextHeight > 500 ? 500 : menuTextHeight, alignment: .topLeading) + .frame(height: menuTextHeight > 500 ? 500 : menuTextHeight) .onPreferenceChange(TextViewHeightKey.self) { value in menuTextHeight = value + 15 } } + .frame(maxWidth: 350, alignment: .leading) + .padding(.leading, 60) } } }