CAnimatedList<T> constructor
const
CAnimatedList<T> ({
- Key? key,
- required ObservableList<
T> observable, - required AnimatedListCubeItemBuilder itemBuilder,
- Axis scrollDirection = Axis.vertical,
- bool reverse = false,
- ScrollController? controller,
- bool? primary,
- ScrollPhysics? physics,
- bool shrinkWrap = false,
- EdgeInsetsGeometry? padding,
Implementation
const CAnimatedList({
Key? key,
required this.observable,
required this.itemBuilder,
this.scrollDirection = Axis.vertical,
this.reverse = false,
this.controller,
this.primary,
this.physics,
this.shrinkWrap = false,
this.padding,
}) : super(key: key);