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