progress function

Widget progress({
  1. double size = 30,
})

Implementation

Widget progress({double size = 30}) {
  return SizedBox(
      width: size,
      height: size,
      child: CircularProgressIndicator(backgroundColor: appLightGray, valueColor: const AlwaysStoppedAnimation<Color>(Color(0xFF9c9c9c))));
}