AnimatedPadding constructor

AnimatedPadding({
  1. Key? key,
  2. required EdgeInsetsGeometry padding,
  3. Widget? child,
  4. Curve curve = Curves.linear,
  5. required Duration duration,
  6. void onEnd()?,
})

Creates a widget that insets its child by a value that animates implicitly.

Implementation

AnimatedPadding(
    {super.key,
    required this.padding,
    this.child,
    this.curve = Curves.linear,
    required this.duration,
    this.onEnd})
    : assert(padding.isNonNegative);