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