xSingleChildScroolView method

Widget xSingleChildScroolView (
  1. {Key key,
  2. bool reverse = false,
  3. ScrollController controller,
  4. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  5. EdgeInsetsGeometry padding,
  6. ScrollPhysics physics,
  7. bool primary,
  8. 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,
  );
}