From cf5d0dc19eed79f67b6b7608806770e1b42abfbb Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 21 Feb 2025 03:49:58 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=EB=A9=94?= =?UTF-8?q?=EC=9D=B8=20=ED=99=88=20=ED=83=AD=20-=20=ED=83=80=EC=9D=B4?= =?UTF-8?q?=ED=8B=80=20=EB=B7=B0=EC=99=80=20notice=20=EB=B7=B0=20=EC=82=AC?= =?UTF-8?q?=EC=9D=B4=20=EA=B0=84=EA=B2=A9=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Content/Main/V2/ContentMainViewV2.swift | 18 ++++++++++++++++++ .../Main/V2/Home/ContentMainTabHomeView.swift | 2 +- .../Series/ContentMainSeriesByGenreView.swift | 18 ++++++++++++++++++ .../V2/Series/ContentMainSeriesGenreView.swift | 18 ++++++++++++++++++ .../ContentMainTabSeriesRepository.swift | 8 ++++++++ .../V2/Series/ContentMainTabSeriesView.swift | 18 ++++++++++++++++++ .../Series/ContentMainTabSeriesViewModel.swift | 8 ++++++++ .../GetContentMainTabSeriesResponse.swift | 8 ++++++++ ...ContentMainOriginalAudioDramaItemView.swift | 18 ++++++++++++++++++ .../ContentMainOriginalAudioDramaView.swift | 18 ++++++++++++++++++ 10 files changed, 133 insertions(+), 1 deletion(-) create mode 100644 SodaLive/Sources/Content/Main/V2/ContentMainViewV2.swift create mode 100644 SodaLive/Sources/Content/Main/V2/Series/ContentMainSeriesByGenreView.swift create mode 100644 SodaLive/Sources/Content/Main/V2/Series/ContentMainSeriesGenreView.swift create mode 100644 SodaLive/Sources/Content/Main/V2/Series/ContentMainTabSeriesRepository.swift create mode 100644 SodaLive/Sources/Content/Main/V2/Series/ContentMainTabSeriesView.swift create mode 100644 SodaLive/Sources/Content/Main/V2/Series/ContentMainTabSeriesViewModel.swift create mode 100644 SodaLive/Sources/Content/Main/V2/Series/GetContentMainTabSeriesResponse.swift create mode 100644 SodaLive/Sources/Content/Main/V2/Series/OriginalAudioDrama/ContentMainOriginalAudioDramaItemView.swift create mode 100644 SodaLive/Sources/Content/Main/V2/Series/OriginalAudioDrama/ContentMainOriginalAudioDramaView.swift 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() +}