buildAnimated method

  1. @protected
Widget buildAnimated(
  1. AnimationController? controller,
  2. Widget child,
  3. AntdAnimated<WidgetType, StateType>? animated
)

Implementation

@protected
Widget buildAnimated(AnimationController? controller, Widget child,
    AntdAnimated<WidgetType, StateType>? animated) {
  if (controller == null || animated == null) {
    return child;
  }
  return animated.build(controller, child, animatorContext);
}