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)