showLoading function
Implementation
void showLoading(BuildContext context) {
showDialog(
context: context,
builder: (BuildContext context) {
return const Alerts(
title: 'Please Wait',
actions: [
Padding(
padding: EdgeInsets.only(bottom: 35),
child: LoadingCircle(size: 80),
)
],
);
},
);
}