AtomicAnimatedContainer constructor

const AtomicAnimatedContainer({
  1. Key? key,
  2. Widget? child,
  3. AlignmentGeometry? alignment,
  4. EdgeInsetsGeometry? padding,
  5. Color? color,
  6. BoxDecoration? decoration,
  7. Decoration? foregroundDecoration,
  8. EdgeInsetsGeometry? margin,
  9. Matrix4? transform,
  10. AlignmentGeometry? transformAlignment,
  11. Clip clipBehavior = Clip.none,
  12. double? width,
  13. double? height,
  14. BoxConstraints? constraints,
  15. BorderRadius? borderRadius,
  16. Border? border,
  17. List<BoxShadow>? shadows,
  18. Gradient? gradient,
  19. required Duration duration,
  20. Curve curve = Curves.easeInOut,
  21. VoidCallback? onEnd,
})

Implementation

const AtomicAnimatedContainer({
  super.key,
  this.child,
  this.alignment,
  this.padding,
  this.color,
  this.decoration,
  this.foregroundDecoration,
  this.margin,
  this.transform,
  this.transformAlignment,
  this.clipBehavior = Clip.none,
  this.width,
  this.height,
  this.constraints,
  this.borderRadius,
  this.border,
  this.shadows,
  this.gradient,
  required super.duration,
  super.curve = Curves.easeInOut,
  super.onEnd,
});