CellAnimatedAlign constructor

const CellAnimatedAlign({
  1. Key? key,
  2. required ValueCell<AlignmentGeometry> alignment,
  3. ValueCell<Widget?>? child,
  4. ValueCell<double?>? heightFactor,
  5. ValueCell<double?>? widthFactor,
  6. ValueCell<Curve> curve = const ValueCell.value(Curves.linear),
  7. required ValueCell<Duration> duration,
  8. ValueCell<void Function()?>? onEnd,
})

Implementation

const CellAnimatedAlign({
  super.key,
  required this.alignment,
  this.child,
  this.heightFactor,
  this.widthFactor,
  this.curve = const ValueCell.value(Curves.linear),
  required this.duration,
  this.onEnd,
});