diff --git a/SodaLive/Sources/Content/Main/V2/ContentMainViewV2.swift b/SodaLive/Sources/Content/Main/V2/ContentMainViewV2.swift new file mode 100644 index 0000000..5612969 --- /dev/null +++ b/SodaLive/Sources/Content/Main/V2/ContentMainViewV2.swift @@ -0,0 +1,18 @@ +// +// ContentMainViewV2.swift +// SodaLive +// +// Created by klaus on 2/21/25. +// + +import SwiftUI + +struct ContentMainViewV2: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + ContentMainViewV2() +} diff --git a/SodaLive/Sources/Content/Main/V2/Home/ContentMainTabHomeView.swift b/SodaLive/Sources/Content/Main/V2/Home/ContentMainTabHomeView.swift index dfa50dd..9f7de9f 100644 --- a/SodaLive/Sources/Content/Main/V2/Home/ContentMainTabHomeView.swift +++ b/SodaLive/Sources/Content/Main/V2/Home/ContentMainTabHomeView.swift @@ -27,7 +27,6 @@ struct ContentMainTabHomeView: View { AppState.shared.setAppStep(step: .myBox(currentTab: .orderlist)) } } - .padding(.bottom, 26.7) .padding(.horizontal, 13.3) if let notice = viewModel.noticeItem { @@ -35,6 +34,7 @@ struct ContentMainTabHomeView: View { AppState.shared .setAppStep(step: .noticeDetail(notice: $0)) } + .padding(.top, 15) .padding(.horizontal, 13.3) } diff --git a/SodaLive/Sources/Content/Main/V2/Series/ContentMainSeriesByGenreView.swift b/SodaLive/Sources/Content/Main/V2/Series/ContentMainSeriesByGenreView.swift new file mode 100644 index 0000000..01024f3 --- /dev/null +++ b/SodaLive/Sources/Content/Main/V2/Series/ContentMainSeriesByGenreView.swift @@ -0,0 +1,18 @@ +// +// ContentMainSeriesByGenreView.swift +// SodaLive +// +// Created by klaus on 2/21/25. +// + +import SwiftUI + +struct ContentMainSeriesByGenreView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + ContentMainSeriesByGenreView() +} diff --git a/SodaLive/Sources/Content/Main/V2/Series/ContentMainSeriesGenreView.swift b/SodaLive/Sources/Content/Main/V2/Series/ContentMainSeriesGenreView.swift new file mode 100644 index 0000000..24994e9 --- /dev/null +++ b/SodaLive/Sources/Content/Main/V2/Series/ContentMainSeriesGenreView.swift @@ -0,0 +1,18 @@ +// +// ContentMainSeriesGenreView.swift +// SodaLive +// +// Created by klaus on 2/21/25. +// + +import SwiftUI + +struct ContentMainSeriesGenreView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + ContentMainSeriesGenreView() +} diff --git a/SodaLive/Sources/Content/Main/V2/Series/ContentMainTabSeriesRepository.swift b/SodaLive/Sources/Content/Main/V2/Series/ContentMainTabSeriesRepository.swift new file mode 100644 index 0000000..fb64491 --- /dev/null +++ b/SodaLive/Sources/Content/Main/V2/Series/ContentMainTabSeriesRepository.swift @@ -0,0 +1,8 @@ +// +// ContentMainTabSeriesRepository.swift +// SodaLive +// +// Created by klaus on 2/20/25. +// + +import Foundation diff --git a/SodaLive/Sources/Content/Main/V2/Series/ContentMainTabSeriesView.swift b/SodaLive/Sources/Content/Main/V2/Series/ContentMainTabSeriesView.swift new file mode 100644 index 0000000..bf69020 --- /dev/null +++ b/SodaLive/Sources/Content/Main/V2/Series/ContentMainTabSeriesView.swift @@ -0,0 +1,18 @@ +// +// ContentMainTabSeriesView.swift +// SodaLive +// +// Created by klaus on 2/20/25. +// + +import SwiftUI + +struct ContentMainTabSeriesView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + ContentMainTabSeriesView() +} diff --git a/SodaLive/Sources/Content/Main/V2/Series/ContentMainTabSeriesViewModel.swift b/SodaLive/Sources/Content/Main/V2/Series/ContentMainTabSeriesViewModel.swift new file mode 100644 index 0000000..4c0fce4 --- /dev/null +++ b/SodaLive/Sources/Content/Main/V2/Series/ContentMainTabSeriesViewModel.swift @@ -0,0 +1,8 @@ +// +// ContentMainTabSeriesViewModel.swift +// SodaLive +// +// Created by klaus on 2/20/25. +// + +import Foundation diff --git a/SodaLive/Sources/Content/Main/V2/Series/GetContentMainTabSeriesResponse.swift b/SodaLive/Sources/Content/Main/V2/Series/GetContentMainTabSeriesResponse.swift new file mode 100644 index 0000000..fc8129a --- /dev/null +++ b/SodaLive/Sources/Content/Main/V2/Series/GetContentMainTabSeriesResponse.swift @@ -0,0 +1,8 @@ +// +// GetContentMainTabSeriesResponse.swift +// SodaLive +// +// Created by klaus on 2/20/25. +// + +import Foundation diff --git a/SodaLive/Sources/Content/Main/V2/Series/OriginalAudioDrama/ContentMainOriginalAudioDramaItemView.swift b/SodaLive/Sources/Content/Main/V2/Series/OriginalAudioDrama/ContentMainOriginalAudioDramaItemView.swift new file mode 100644 index 0000000..cc31892 --- /dev/null +++ b/SodaLive/Sources/Content/Main/V2/Series/OriginalAudioDrama/ContentMainOriginalAudioDramaItemView.swift @@ -0,0 +1,18 @@ +// +// ContentMainOriginalAudioDramaItemView.swift +// SodaLive +// +// Created by klaus on 2/21/25. +// + +import SwiftUI + +struct ContentMainOriginalAudioDramaItemView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + ContentMainOriginalAudioDramaItemView() +} diff --git a/SodaLive/Sources/Content/Main/V2/Series/OriginalAudioDrama/ContentMainOriginalAudioDramaView.swift b/SodaLive/Sources/Content/Main/V2/Series/OriginalAudioDrama/ContentMainOriginalAudioDramaView.swift new file mode 100644 index 0000000..7a08376 --- /dev/null +++ b/SodaLive/Sources/Content/Main/V2/Series/OriginalAudioDrama/ContentMainOriginalAudioDramaView.swift @@ -0,0 +1,18 @@ +// +// ContentMainOriginalAudioDramaView.swift +// SodaLive +// +// Created by klaus on 2/21/25. +// + +import SwiftUI + +struct ContentMainOriginalAudioDramaView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + ContentMainOriginalAudioDramaView() +}