overflowXScroll method
overflow-x-scroll -> X轴始终可滚动
Implementation
ScrollBuilder overflowXScroll() {
_enableScrollX = true;
_enableScrollY = false;
_scrollDirection = Axis.horizontal;
_clipBehavior = Clip.hardEdge;
_physics = const AlwaysScrollableScrollPhysics();
return this;
}