sizeVer function

Widget sizeVer(
  1. double height
)

Used to determine the vertical offset

Implementation

Widget sizeVer(double height) {
  return SizedBox(
    height: height,
  );
}