scrollableX method

Widget scrollableX()

Wraps the widget in a SingleChildScrollView for horizontal scrolling.

Implementation

Widget scrollableX() =>
    SingleChildScrollView(scrollDirection: Axis.horizontal, child: this);