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
@Composable fun KonfettiView( modifier: Modifier = Modifier, parties: List<Party>, updateListener: OnParticleSystemUpdateListener? = null )
The KonfettiView composable is non-skippable and non-restartable because the parties parameter is unstable, as well as OnParticleSystemUpdateListener
parties
OnParticleSystemUpdateListener
Soluiton: Replace update listener with a lambda using rememberUpdatedState and wrap List<Parties> in an object that is marked as @Immutable
rememberUpdatedState
List<Parties>
@Immutable
This issue has a serious performance impact as ConfettiView is being recomposed every time unrelated parameters change.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The KonfettiView composable is non-skippable and non-restartable because the
parties
parameter is unstable, as well asOnParticleSystemUpdateListener
Soluiton:
Replace update listener with a lambda using
rememberUpdatedState
and wrapList<Parties>
in an object that is marked as@Immutable
This issue has a serious performance impact as ConfettiView is being recomposed every time unrelated parameters change.
The text was updated successfully, but these errors were encountered: