loadingWidget static method
Implementation
static loadingWidget(Size size) {
return SizedBox(
height: size.height * 0.5,
child: Center(
child: Lottie.asset(GlobalParams.loaderFile),
),
);
}
static loadingWidget(Size size) {
return SizedBox(
height: size.height * 0.5,
child: Center(
child: Lottie.asset(GlobalParams.loaderFile),
),
);
}