CurvedAnimationWidget constructor

const CurvedAnimationWidget({
  1. Key? key,
  2. required AnimationController controller,
  3. required Widget builder(
    1. BuildContext context,
    2. Animation<double> animation
    ),
  4. VoidCallback? onHide,
  5. Curve? curve,
  6. Curve? reverseCurve,
})

Implementation

const CurvedAnimationWidget({
  Key? key,
  required this.controller,
  required this.builder,
  this.onHide,
  this.curve,
  this.reverseCurve,
}) : super(key: key);