From be1d70a83532d63d6d1adcd73576fbdf78b93b19 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 22 Dec 2023 01:07:07 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A7=80=EA=B8=88=20=EB=9D=BC=EC=9D=B4?= =?UTF-8?q?=EB=B8=8C=20=EC=A4=91=20-=20=ED=98=84=EC=9E=AC=20=EC=9E=85?= =?UTF-8?q?=EC=9E=A5=EB=90=98=EC=96=B4=20=EC=9E=88=EB=8A=94=20=EC=9D=B8?= =?UTF-8?q?=EC=9B=90=20UI=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Live/Now/All/LiveNowAllItemView.swift | 14 -------------- SodaLive/Sources/Live/Now/LiveNowItemView.swift | 16 ---------------- 2 files changed, 30 deletions(-) diff --git a/SodaLive/Sources/Live/Now/All/LiveNowAllItemView.swift b/SodaLive/Sources/Live/Now/All/LiveNowAllItemView.swift index 25e1227..c754121 100644 --- a/SodaLive/Sources/Live/Now/All/LiveNowAllItemView.swift +++ b/SodaLive/Sources/Live/Now/All/LiveNowAllItemView.swift @@ -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() diff --git a/SodaLive/Sources/Live/Now/LiveNowItemView.swift b/SodaLive/Sources/Live/Now/LiveNowItemView.swift index 3201e18..6029e34 100644 --- a/SodaLive/Sources/Live/Now/LiveNowItemView.swift +++ b/SodaLive/Sources/Live/Now/LiveNowItemView.swift @@ -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)