From 0de3cf55a7f577c8554cb64cb33e68ef7d58be62 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 22 Dec 2023 01:49:30 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9D=BC=EC=9D=B4=EB=B8=8C=20=EB=A9=94?= =?UTF-8?q?=EC=9D=B8=20-=20=EC=95=A0=EB=8B=88=EB=A9=94=EC=9D=B4=EC=85=98?= =?UTF-8?q?=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Live/LiveView.swift | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/SodaLive/Sources/Live/LiveView.swift b/SodaLive/Sources/Live/LiveView.swift index 0767e95..fbc7404 100644 --- a/SodaLive/Sources/Live/LiveView.swift +++ b/SodaLive/Sources/Live/LiveView.swift @@ -29,6 +29,7 @@ struct LiveView: View { if viewModel.recommendLiveItems.count > 0 { SectionRecommendLiveView(items: viewModel.recommendLiveItems) .padding(.top, 13.3) + .animation(nil) } if viewModel.recommendChannelItems.count > 0 { @@ -38,6 +39,7 @@ struct LiveView: View { viewModel.recommendChannelItems, isFollowingList: $viewModel.isFollowingList ) + .animation(nil) } SectionLiveNowView( @@ -49,6 +51,7 @@ struct LiveView: View { AppState.shared.setAppStep(step: .createLive(timeSettingMode: .NOW, onSuccess: onCreateSuccess)) } ) + .animation(nil) if viewModel.eventBannerItems.count > 0 { SectionEventBannerView(items: viewModel.eventBannerItems) @@ -57,10 +60,12 @@ struct LiveView: View { height: viewModel.eventBannerItems.count > 0 ? screenSize().width * 300 / 1000 : 0, alignment: .center ) + .animation(nil) } if viewModel.communityPostItems.count > 0 { SectionCommunityPostView(items: viewModel.communityPostItems) + .animation(nil) } SectionLiveReservationView( @@ -74,6 +79,7 @@ struct LiveView: View { AppState.shared.setAppStep(step: .createLive(timeSettingMode: .RESERVATION, onSuccess: onCreateSuccess)) } ) + .animation(nil) } } .frame(width: geo.size.width, height: geo.size.height)