From 3d625a4fa0cf4b6bfb3b683c6dcb4a9a6af95fc0 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Thu, 2 May 2024 14:26:30 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9D=BC=EC=9D=B4=EB=B8=8C=20-=20=EB=A9=94?= =?UTF-8?q?=EB=89=B4=ED=8C=90=20=EC=8A=A4=ED=81=AC=EB=A1=A4=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Sources/Live/Room/V2/LiveRoomViewV2.swift | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift b/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift index 8066a3a..9b731ba 100644 --- a/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift +++ b/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift @@ -329,16 +329,17 @@ struct LiveRoomViewV2: View { VStack(alignment: .leading, spacing: 0) { Image("ic_notice_triangle") .padding(.leading, 60) - - VStack(alignment: .leading, spacing: 8) { - Text("[메뉴판]") - .font(.custom(Font.bold.rawValue, size: 11.3)) - .foregroundColor(.white) - - Text(liveRoomInfo.menuPan) - .font(.custom(Font.light.rawValue, size: 11.3)) - .foregroundColor(.white) - .lineSpacing(4) + ScrollView(.vertical, showsIndicators: false) { + VStack(alignment: .leading, spacing: 8) { + Text("[메뉴판]") + .font(.custom(Font.bold.rawValue, size: 11.3)) + .foregroundColor(.white) + + Text(liveRoomInfo.menuPan) + .font(.custom(Font.light.rawValue, size: 11.3)) + .foregroundColor(.white) + .lineSpacing(4) + } } .padding(8) .background(Color.gray33)