linearAnimation static method

Widget linearAnimation()

Implementation

static Widget linearAnimation() {
  return SizedBox(
    height: SizeConstant.getHeightWithScreen(2),
    width: double.maxFinite,
    child: LinearProgressIndicator(
      color: ColorConstant.primaryColor,
      valueColor: AlwaysStoppedAnimation(
        ColorConstant.primaryColor,
      ),
    ),
  );
}