scrollable method
Wraps the widget in a SingleChildScrollView.
Implementation
Widget scrollable({
Axis axis = Axis.vertical,
bool reverse = false,
ScrollPhysics? physics,
}) => SingleChildScrollView(
scrollDirection: axis,
reverse: reverse,
physics: physics,
child: this,
);