horizontalScroll method

SingleChildScrollView horizontalScroll({
  1. ScrollController? controller,
  2. ScrollPhysics? physics,
})

Implementation

SingleChildScrollView horizontalScroll({ScrollController? controller, ScrollPhysics? physics}) {
  return SingleChildScrollView(controller: controller, scrollDirection: Axis.horizontal, physics: physics, child: this);
}