getCenterChild method

Widget getCenterChild()

Implementation

Widget getCenterChild() {
  if (widget.scrollAxis == Axis.horizontal) {
    return Container(
      width: blankWidth,
    );
  } else {
    return Container(
      height: blankHeight,
    );
  }
}