-
Notifications
You must be signed in to change notification settings - Fork 78
Closed
Description
When I launch my application for the first time the animation is not applied only to the redacted view but to the whole view:
This is my code:
ScrollView {
TodayFeaturedRecipesView()
.environmentObject(viewModel)
.tag(0)
TodayStatisticsView()
.environmentObject(viewModel)
.padding(.top)
if !(accManager.user?.isPremium ?? false) {
TodayFreeRecipesView()
.environmentObject(viewModel)
ExplorePremiumBannerView()
.redacted(reason: viewModel.isLoading ? .placeholder : [])
.shimmering(active: viewModel.isLoading, gradient: colorScheme == .dark ? K.Gradients.lightShimmeringGradient : K.Gradients.darkShimmeringGradient)
}
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels

