scrollable method

Widget scrollable()

Wraps the column with a SingleChildScrollView.

Implementation

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