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

@@ -0,0 +1,18 @@
//
// SeriesMainHomeView.swift
// SodaLive
//
// Created by klaus on 11/14/25.
//
import SwiftUI
struct SeriesMainHomeView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
#Preview {
SeriesMainHomeView()
}

View File

@@ -0,0 +1,8 @@
//
// SeriesMainHomeViewModel.swift
// SodaLive
//
// Created by klaus on 11/14/25.
//
import Foundation