Home > Software engineering >  How to Implement basic animations in flutter?
How to Implement basic animations in flutter?

Time:05-10

Okay, so I have been working with flutter for the past 1 year, I have mostly done the integration stuff currently I am working on a project where I am building a bit complex UI that requires different types of animations, I am confused about which packages or libraries should be used with flutter for it and further what are the good approaches that should be implemented. ??

CodePudding user response:

For complex UI and animations, three widgets are essential:

1: Stack 2: Transform 3: Animation Controller

If you have a good control over them, you can master animations in Flutter. I really think this would be the best approach. Instead of using third party libraries.

CodePudding user response:

You can use Flutter Animation Gallery app. https://play.google.com/store/apps/details?id=com.flutter.gaurav_tantuway.flutter_animation_gallery

  • Related