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