scrollableVerticalAlways property

Widget scrollableVerticalAlways

Implementation

Widget get scrollableVerticalAlways => SingleChildScrollView(
      scrollDirection: Axis.vertical,
      physics: const AlwaysScrollableScrollPhysics(),
      child: this,
    );