scrollableHorizontalAlways property

Widget scrollableHorizontalAlways

Implementation

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