animated container

Learning Flutter Widgets, Widget 4 – Animated Container

Learning Flutter Widgets, Widget 4 – Animated Container

Flutter AnimatedContainer class Animated version of Container that gradually changes its values over a period of time. The AnimatedContainer will automatically animate between the old and new values of properties when they change using the provided curve and duration. Properties that are null are not animated. Its child and descendants are not animated. This class is useful for generating simple…