CellAnimatedPositioned constructor
const
CellAnimatedPositioned({
- Key? key,
- required ValueCell<
Widget> child, - ValueCell<
double?> ? left, - ValueCell<
double?> ? top, - ValueCell<
double?> ? right, - ValueCell<
double?> ? bottom, - ValueCell<
double?> ? width, - ValueCell<
double?> ? height, - ValueCell<
Curve> curve = const ValueCell.value(Curves.linear), - required ValueCell<
Duration> duration, - ValueCell<
void Function()?> ? onEnd,
Implementation
const CellAnimatedPositioned({
super.key,
required this.child,
this.left,
this.top,
this.right,
this.bottom,
this.width,
this.height,
this.curve = const ValueCell.value(Curves.linear),
required this.duration,
this.onEnd,
});