CellAnimatedScale constructor

const CellAnimatedScale({
  1. Key? key,
  2. ValueCell<Widget?>? child,
  3. required ValueCell<double> scale,
  4. ValueCell<Alignment> alignment = const ValueCell.value(Alignment.center),
  5. ValueCell<FilterQuality?>? filterQuality,
  6. ValueCell<Curve> curve = const ValueCell.value(Curves.linear),
  7. required ValueCell<Duration> duration,
  8. ValueCell<void Function()?>? onEnd,
})

Implementation

const CellAnimatedScale({
  super.key,
  this.child,
  required this.scale,
  this.alignment = const ValueCell.value(Alignment.center),
  this.filterQuality,
  this.curve = const ValueCell.value(Curves.linear),
  required this.duration,
  this.onEnd,
});