Flutter Animatedalign

Container(
          color: Colors.pink[100],
          width: 100.0,
          height: 100.0,
          child: const AnimatedAlign(
          alignment: Alignment.topRight, // change alignment to see animation
          duration: Duration(seconds: 2),
          child: FlutterLogo()),
        ),
Sore Serval