singleChildScrollView method

SingleChildScrollView singleChildScrollView({
  1. Key? key,
  2. Axis scrollDirection = Axis.vertical,
  3. bool reverse = false,
  4. EdgeInsetsGeometry? padding,
  5. bool? primary,
  6. ScrollPhysics? physics,
  7. ScrollController? controller,
  8. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
})

Implementation

SingleChildScrollView singleChildScrollView(
        {Key? key,
        Axis scrollDirection = Axis.vertical,
        bool reverse = false,
        EdgeInsetsGeometry? padding,
        bool? primary,
        ScrollPhysics? physics,
        ScrollController? controller,
        DragStartBehavior dragStartBehavior = DragStartBehavior.start}) =>
    SingleChildScrollView(
        key: key,
        scrollDirection: scrollDirection,
        reverse: reverse,
        padding: padding,
        primary: primary,
        physics: physics,
        controller: controller,
        dragStartBehavior: dragStartBehavior,
        child: this);