And how to apply it effectively.

Hi, everyone. This is  Yuşa and I am working at  WeWALK as Software Engineer. In the near future, I started to learn Flutter and really liked it. I think, one of the charming concepts of Flutter is animation. In this story, we will look at the animation and how to customize it. You can follow the same methods to any of your projects to customize an animation. So, let’s look at what we can do with it.

Initializing AnimationController

Photo by Federico Vitale on Unsplash

First of all, we will define the AnimationController to animate what we want.

late AnimationController controller;

We use the keyword “late” as we will initialize the controller in initState method, it did not have to be immediately initialized.

#flutter #dart #animation #cross

Custom Animation in Flutter
1.85 GEEK