Animation In Flutter

Hardik Khurana
1 min readSep 30, 2020

--

In this blog, we’re going to implement some examples of basic animations in Flutter.

Animations in a mobile app add interactivity to the UI as well as some visual effects to it. Animations, when used correctly, can make a huge difference in how the user perceives your app.

1. Animation Class

All the animations in Flutter are provided by Animation class. According to the documentation, Animation contains a generic type variable Animation<T> which means that what type of value should be animated. The most common type of Animation used is Animation<double>

2. AnimationController

It is basically a controller for animation, which lets you to perform various operations with the current animation.

Basic Types of Animation

  • Tween
  • Curved

--

--

No responses yet