AnimatedInfiniteListOptions constructor

const AnimatedInfiniteListOptions({
  1. ScrollBehavior? scrollBehavior,
  2. bool reverse = false,
  3. bool animateAtStart = false,
  4. EdgeInsets? padding,
  5. Duration? animationDuration,
  6. int loadMoreTriggerItemDistance = 2,
  7. AlwaysScrollableScrollPhysics? scrollPhysics,
  8. bool shrinkWrap = false,
  9. Axis scrollDirection = Axis.vertical,
})

Implementation

const AnimatedInfiniteListOptions({
  super.scrollBehavior,
  super.reverse,
  this.animateAtStart = false,
  super.padding,
  this.animationDuration,
  super.loadMoreTriggerItemDistance,
  super.scrollPhysics,
  super.shrinkWrap,
  super.scrollDirection,
});