xSingleChildScroolViewClampingScrollPhysics method
- {Key key,
- bool reverse = false,
- ScrollController controller,
- DragStartBehavior dragStartBehavior = DragStartBehavior.start,
- EdgeInsetsGeometry padding,
- bool primary,
- Axis scrollDirection = Axis.vertical}
------------------------------------------------------------------------ Single ChildScroll view
Implementation
Widget xSingleChildScroolViewClampingScrollPhysics(
{Key key,
bool reverse = false,
ScrollController controller,
DragStartBehavior dragStartBehavior = DragStartBehavior.start,
EdgeInsetsGeometry padding,
bool primary,
Axis scrollDirection = Axis.vertical}) {
return SingleChildScrollView(
key: key,
reverse: reverse,
controller: controller,
dragStartBehavior: dragStartBehavior,
padding: padding,
physics: ClampingScrollPhysics(),
primary: primary,
scrollDirection: scrollDirection,
child: this,
);
}