onScroll method

Widget onScroll()

Wraps this widget in a SingleChildScrollView to make it scrollable.

Implementation

Widget onScroll() {
  return SingleChildScrollView(child: this);
}