CellAnimatedContainer constructor

const CellAnimatedContainer({
  1. Key? key,
  2. ValueCell<AlignmentGeometry?>? alignment,
  3. ValueCell<EdgeInsetsGeometry?>? padding,
  4. ValueCell<Color?>? color,
  5. ValueCell<Decoration?>? decoration,
  6. ValueCell<Decoration?>? foregroundDecoration,
  7. ValueCell<double?>? width,
  8. ValueCell<double?>? height,
  9. ValueCell<BoxConstraints?>? constraints,
  10. ValueCell<EdgeInsetsGeometry?>? margin,
  11. ValueCell<Matrix4?>? transform,
  12. ValueCell<AlignmentGeometry?>? transformAlignment,
  13. ValueCell<Widget?>? child,
  14. ValueCell<Clip> clipBehavior = const ValueCell.value(Clip.none),
  15. ValueCell<Curve> curve = const ValueCell.value(Curves.linear),
  16. required ValueCell<Duration> duration,
  17. ValueCell<void Function()?>? onEnd,
})

Implementation

const CellAnimatedContainer({
  super.key,
  this.alignment,
  this.padding,
  this.color,
  this.decoration,
  this.foregroundDecoration,
  this.width,
  this.height,
  this.constraints,
  this.margin,
  this.transform,
  this.transformAlignment,
  this.child,
  this.clipBehavior = const ValueCell.value(Clip.none),
  this.curve = const ValueCell.value(Curves.linear),
  required this.duration,
  this.onEnd,
});