라이브, 예약 캘린더에서 라이브 만들기 제거

This commit is contained in:
Yu Sung 2024-12-18 22:31:21 +09:00
parent f909de3bfc
commit d2d65b0405
1 changed files with 2 additions and 20 deletions

View File

@ -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)
}