feat: 인기 단편 전체보기

- 인기 단편 전체보기에 포인트 사용 여부 표시
This commit is contained in:
Yu Sung
2025-06-10 21:15:02 +09:00
parent 6b0ea91ceb
commit ed2928141d

View File

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