xListView method

Widget xListView (
  1. {bool addAutomaticKeepAlives = true,
  2. bool addRepaintBoundaries = true,
  3. bool addSemanticIndexes = true,
  4. double cacheExtent,
  5. ScrollController controller,
  6. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  7. double itemExtent,
  8. Key key,
  9. EdgeInsetsGeometry padding,
  10. ScrollPhysics physics,
  11. bool primary,
  12. bool reverse = false,
  13. int semanticChildCount,
  14. Axis scrollDirection = Axis.vertical,
  15. bool shrinkWrap = false}
)

Implementation

Widget xListView({
  bool addAutomaticKeepAlives = true,
  bool addRepaintBoundaries = true,
  bool addSemanticIndexes = true,
  double cacheExtent,
  ScrollController controller,
  DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  double itemExtent,
  Key key,
  EdgeInsetsGeometry padding,
  ScrollPhysics physics,
  bool primary,
  bool reverse = false,
  int semanticChildCount,
  Axis scrollDirection = Axis.vertical,
  bool shrinkWrap = false,
}) {
  return ListView(
    addAutomaticKeepAlives: addAutomaticKeepAlives,
    addRepaintBoundaries: addRepaintBoundaries,
    addSemanticIndexes: addSemanticIndexes,
    cacheExtent: cacheExtent,
    controller: controller,
    dragStartBehavior: dragStartBehavior,
    itemExtent: itemExtent,
    key: key,
    padding: padding,
    physics: physics,
    primary: primary,
    reverse: reverse,
    semanticChildCount: semanticChildCount,
    shrinkWrap: shrinkWrap,
    scrollDirection: scrollDirection,
    children: this,
  );
}