animationWrapper method

Widget animationWrapper(
  1. Widget child
)

Implementation

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