feat(series-all): 시리즈 전체보기 페이지 파일 생성

- 홈 뷰의 요일별 시리즈에 전체보기 텍스트 추가
- 전체보기 터치시 시리즈 전체보기 페이지로 이동 액션 추가
This commit is contained in:
Yu Sung
2025-11-14 23:56:52 +09:00
parent be40fbc226
commit 320dbb6d57
12 changed files with 129 additions and 0 deletions

View File

@@ -52,6 +52,16 @@ struct DayOfWeekSeriesView: 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: .seriesMain)
}
}
.padding(.horizontal, 24)