feat(series-all): 오직 보이스온에서만(오리지널 시리즈) 전체보기 추가

This commit is contained in:
Yu Sung
2025-11-14 18:07:22 +09:00
parent ed48efd58d
commit be40fbc226
5 changed files with 25 additions and 8 deletions

View File

@@ -201,6 +201,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: .seriesAll(isOriginal: true))
}
}
.padding(.horizontal, 24)