I want to change background color of easy loading(package-flutter_easyloading) like by default it's black and I want to change it to red. I have tried this code:
EasyLoadingStyle.custom;
EasyLoading.instance
..displayDuration =const Duration(milliseconds: 2000)
..backgroundColor = Colors.red
..indicatorColor = Colors.red
..maskColor = Colors.red
..userInteractions = false;
EasyLoading.show(status: 'Please wait...');