xListViewHorizontal method
Widget
xListViewHorizontal
(- {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,
- bool shrinkWrap = false}
)
Implementation
Widget xListViewHorizontal({
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,
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: Axis.horizontal,
children: this,
);
}