feat(audio-content-all): 무료 콘텐츠, 포인트 대여 콘텐츠 전체보기 페이지 UI/API 구현

This commit is contained in:
Yu Sung
2025-11-14 04:21:39 +09:00
parent e5810766b1
commit c4a7742514
7 changed files with 254 additions and 0 deletions

View File

@@ -289,6 +289,16 @@ struct HomeTabView: View {
Text(" 콘텐츠")
.font(.custom(Font.preBold.rawValue, size: 24))
.foregroundColor(.white)
Spacer()
Text("전체보기")
.font(.custom(Font.preRegular.rawValue, size: 14))
.foregroundColor(.init(hex: "78909C"))
.onTapGesture {
AppState.shared
.setAppStep(step: .contentAll(isFree: true, isPointOnly: false))
}
}
.padding(.horizontal, 24)
@@ -313,6 +323,16 @@ struct HomeTabView: View {
Text(" 대여 콘텐츠")
.font(.custom(Font.preBold.rawValue, size: 24))
.foregroundColor(.white)
Spacer()
Text("전체보기")
.font(.custom(Font.preRegular.rawValue, size: 14))
.foregroundColor(.init(hex: "78909C"))
.onTapGesture {
AppState.shared
.setAppStep(step: .contentAll(isFree: false, isPointOnly: true))
}
}
.padding(.horizontal, 24)