loader method

Center loader()

Implementation

Center loader() {
  return const Center(
    child: SizedBox(
      width: 25,
      height: 25,
      child: SizedBox(
        height: 18,
        width: 18,
        child: CircularProgressIndicator(color: Color(0xFF05BF04)),
      ),
    ),
  );
}