From 8d79742fcde040b46bd53a8643d3896486995b34 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Tue, 25 Feb 2025 14:14:52 +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-=20=ED=85=8C=EB=A7=88=20=ED=83=AD=20?= =?UTF-8?q?=EC=88=9C=EC=84=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Main/V2/Home/ContentMainTabHomeView.swift | 48 +++++++++---------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/SodaLive/Sources/Content/Main/V2/Home/ContentMainTabHomeView.swift b/SodaLive/Sources/Content/Main/V2/Home/ContentMainTabHomeView.swift index e7e4046..b287b9f 100644 --- a/SodaLive/Sources/Content/Main/V2/Home/ContentMainTabHomeView.swift +++ b/SodaLive/Sources/Content/Main/V2/Home/ContentMainTabHomeView.swift @@ -102,16 +102,6 @@ struct ContentMainTabHomeView: View { ) .frame(maxWidth: .infinity) - ContentMainTabCategoryView( - imageName: "ic_category_audio_book", - title: "오디오북", - onClick: { - viewModel.errorMessage = "준비중입니다." - viewModel.isShowPopup = true - } - ) - .frame(maxWidth: .infinity) - ContentMainTabCategoryView( imageName: "ic_category_alarm", title: "모닝콜", @@ -125,9 +115,7 @@ struct ContentMainTabHomeView: View { } ) .frame(maxWidth: .infinity) - } - - HStack(spacing: 0) { + ContentMainTabCategoryView( imageName: "ic_category_asmr", title: "ASMR", @@ -141,7 +129,9 @@ struct ContentMainTabHomeView: View { } ) .frame(maxWidth: .infinity) - + } + + HStack(spacing: 0) { ContentMainTabCategoryView( imageName: "ic_category_replay", title: "다시듣기", @@ -156,16 +146,6 @@ struct ContentMainTabHomeView: View { ) .frame(maxWidth: .infinity) - ContentMainTabCategoryView( - imageName: "ic_category_audio_toon", - title: "오디오툰", - onClick: { - viewModel.errorMessage = "준비중입니다." - viewModel.isShowPopup = true - } - ) - .frame(maxWidth: .infinity) - ContentMainTabCategoryView( imageName: "ic_category_free", title: "무료", @@ -179,6 +159,26 @@ struct ContentMainTabHomeView: View { } ) .frame(maxWidth: .infinity) + + ContentMainTabCategoryView( + imageName: "ic_category_audio_book", + title: "오디오북", + onClick: { + viewModel.errorMessage = "준비중입니다." + viewModel.isShowPopup = true + } + ) + .frame(maxWidth: .infinity) + + ContentMainTabCategoryView( + imageName: "ic_category_audio_toon", + title: "오디오툰", + onClick: { + viewModel.errorMessage = "준비중입니다." + viewModel.isShowPopup = true + } + ) + .frame(maxWidth: .infinity) } } .padding(.vertical, 13.3)