애니메이션 제거 코드 삭제

This commit is contained in:
Yu Sung 2023-12-22 02:59:01 +09:00
parent a17dacc900
commit ceef432695
1 changed files with 0 additions and 6 deletions

View File

@ -29,7 +29,6 @@ struct LiveView: View {
if viewModel.recommendLiveItems.count > 0 {
SectionRecommendLiveView(items: viewModel.recommendLiveItems)
.padding(.top, 13.3)
.animation(nil)
}
if viewModel.recommendChannelItems.count > 0 {
@ -39,7 +38,6 @@ struct LiveView: View {
viewModel.recommendChannelItems,
isFollowingList: $viewModel.isFollowingList
)
.animation(nil)
}
SectionLiveNowView(
@ -51,7 +49,6 @@ struct LiveView: View {
AppState.shared.setAppStep(step: .createLive(timeSettingMode: .NOW, onSuccess: onCreateSuccess))
}
)
.animation(nil)
if viewModel.eventBannerItems.count > 0 {
SectionEventBannerView(items: viewModel.eventBannerItems)
@ -60,12 +57,10 @@ 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(
@ -79,7 +74,6 @@ struct LiveView: View {
AppState.shared.setAppStep(step: .createLive(timeSettingMode: .RESERVATION, onSuccess: onCreateSuccess))
}
)
.animation(nil)
}
}
.frame(width: geo.size.width, height: geo.size.height)