Widget animationWrapper(Widget child) { if (isSimple) { return child; } return AnimatedSwitcher( duration: 300.ms, child: child, ); }