From d2d65b04053e5d1239b624de2614de567342d432 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Wed, 18 Dec 2024 22:31:21 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9D=BC=EC=9D=B4=EB=B8=8C,=20=EC=98=88?= =?UTF-8?q?=EC=95=BD=20=EC=BA=98=EB=A6=B0=EB=8D=94=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=EB=9D=BC=EC=9D=B4=EB=B8=8C=20=EB=A7=8C=EB=93=A4=EA=B8=B0=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../All/LiveReservationAllView.swift | 22 ++----------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/SodaLive/Sources/Live/Reservation/All/LiveReservationAllView.swift b/SodaLive/Sources/Live/Reservation/All/LiveReservationAllView.swift index 1822b1a..dd65836 100644 --- a/SodaLive/Sources/Live/Reservation/All/LiveReservationAllView.swift +++ b/SodaLive/Sources/Live/Reservation/All/LiveReservationAllView.swift @@ -57,34 +57,16 @@ struct LiveReservationAllView: View { .resizable() .frame(width: 60, height: 60) - Text("마이페이지에서 본인인증을 하거나\n다른 날짜의 라이브를 예약하고 참여해 보세요") + Text("지금 예약중인 라이브가 없습니다.\n다른 날짜의 라이브를 예약하고 참여해 보세요.") .font(.custom(Font.medium.rawValue, size: 13)) .foregroundColor(Color(hex: "bbbbbb")) .multilineTextAlignment(.center) .lineSpacing(8) .padding(.top, 8) - - HStack(spacing: 0) { - Image("ic_plus_no_bg") - .resizable() - .frame(width: 33.3, height: 33.3, alignment: .center) - - Text("라이브 만들기") - .font(.custom(Font.bold.rawValue, size: 13.3)) - .foregroundColor(Color.white) - } - .frame(width: 200, height: 33.3, alignment: .center) - .background(Color(hex: "3bb9f1")) - .cornerRadius(4.7) - .padding(.top, 10.7) - .onTapGesture { - AppState.shared.back() - onTapCreateLive() - } } .padding(.vertical, 16.7) .frame(width: screenSize().width - 26.7) - .background(Color(hex: "13181b")) + .background(Color.bg) .cornerRadius(4.7) .padding(.top, 28.3) }