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