We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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) } }
The text was updated successfully, but these errors were encountered:
We had the same issue and were able to fix it by introducing the changes from #20
Can you try if this fix works for you as well?
Sorry, something went wrong.
Yup, the issue was fixed! Thank you :)
Successfully merging a pull request may close this issue.
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:
The text was updated successfully, but these errors were encountered: