Widget fadingTransition(Animation<double> animation, Widget child) { return FadeTransition( opacity: animation, child: child, ); }