From ed2928141d43771aa2a9540987106ef7a82200cb Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Tue, 10 Jun 2025 21:15:02 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=9D=B8=EA=B8=B0=20=EB=8B=A8=ED=8E=B8?= =?UTF-8?q?=20=EC=A0=84=EC=B2=B4=EB=B3=B4=EA=B8=B0=20-=20=EC=9D=B8?= =?UTF-8?q?=EA=B8=B0=20=EB=8B=A8=ED=8E=B8=20=EC=A0=84=EC=B2=B4=EB=B3=B4?= =?UTF-8?q?=EA=B8=B0=EC=97=90=20=ED=8F=AC=EC=9D=B8=ED=8A=B8=20=EC=82=AC?= =?UTF-8?q?=EC=9A=A9=20=EC=97=AC=EB=B6=80=20=ED=91=9C=EC=8B=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Content/All/ContentRankingAllView.swift | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/SodaLive/Sources/Content/All/ContentRankingAllView.swift b/SodaLive/Sources/Content/All/ContentRankingAllView.swift index eb7f999..07a25d9 100644 --- a/SodaLive/Sources/Content/All/ContentRankingAllView.swift +++ b/SodaLive/Sources/Content/All/ContentRankingAllView.swift @@ -82,6 +82,15 @@ struct ContentRankingAllView: View { .padding(2.6) .background(Color(hex: "222222")) .cornerRadius(2.6) + + if item.isPointAvailable { + Text("포인트") + .font(.custom(Font.medium.rawValue, size: 8)) + .foregroundColor(.white) + .padding(2.6) + .background(Color(hex: "7849bc")) + .cornerRadius(2.6) + } } Text(item.creatorNickname)