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