지금 라이브 중 - 현재 입장되어 있는 인원 UI 제거

This commit is contained in:
Yu Sung 2023-12-22 01:07:07 +09:00
parent 623640d410
commit be1d70a835
2 changed files with 0 additions and 30 deletions

View File

@ -52,19 +52,6 @@ struct LiveNowAllItemView: View {
Spacer()
HStack(spacing: 0) {
Image("ic_avatar")
.resizable()
.frame(width: 20, height: 20)
Text("\(item.numberOfParticipate)")
.font(.custom(Font.medium.rawValue, size: 13.3))
.foregroundColor(.white)
.padding(.leading, 2.7)
Text("/\(item.numberOfPeople)")
.font(.custom(Font.medium.rawValue, size: 13.3))
.foregroundColor(Color(hex: "555555"))
Text(item.numberOfPeople > item.numberOfParticipate ? "참여가능" : "Sold out")
.font(.custom(Font.medium.rawValue, size: 13.3))
.foregroundColor(
@ -74,7 +61,6 @@ struct LiveNowAllItemView: View {
"ffd300"
)
)
.padding(.leading, 10)
Spacer()

View File

@ -53,22 +53,6 @@ struct LiveNowItemView: View {
.padding(.top, 3.3)
Spacer()
HStack(spacing: 2.7) {
Image("ic_avatar")
.resizable()
.frame(width: 20, height: 20)
Text("\(item.numberOfParticipate)")
.font(.custom(Font.medium.rawValue, size: 13.3))
.foregroundColor(Color.white)
}
.padding(.horizontal, 5.3)
.padding(.bottom, 2.7)
.background(Color(hex: "333333"))
.cornerRadius(13.3)
.padding(.trailing, 6.7)
.padding(.bottom, 6.7)
}
}
.frame(width: width, height: height)