CollectionSlideTransition constructor

CollectionSlideTransition({
  1. required List<Widget> children,
  2. Offset end = const Offset(0.0, -1.0),
  3. bool repeat = true,
})

Creates transiton widget.

children is requied and must not be null. end property has default displacement of -1.0 in vertical direction.

Implementation

CollectionSlideTransition({
  required this.children,
  this.end = const Offset(0.0, -1.0),
  this.repeat = true,
}) : assert(children != null);