Home > Back-end >  Is it possible to create an animation like this in flutter?
Is it possible to create an animation like this in flutter?

Time:10-12

I would want a button that creates a similar effect to the new youtube like button when pressed. I don't care about it moving though, just the fireworks.

enter image description here

CodePudding user response:

You could animate that yourself, yes.

But that would be too much work instead of taking a predefined animation from Lottie https://pub.dev/packages/lottie or similar and just playing it. Maybe https://pub.dev/packages/confetti is also an option for you.

  • Related