showLoader function

Widget showLoader()

Implementation

Widget showLoader(){
  return Scaffold(
      backgroundColor: CommonColors.white,
      body: Center(child: CircularProgressIndicator(color: CommonColors.primary,),
      )
  );
}