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)