EasyLoading instance backgroundColor not working
Other colors are applicable. When backgroundColor = Colors.transparent is set, the color is not applied.
Thanks for taking the time to open an issue. I will have a look and answer as soon as possible.
Me too
I need transparent bg as well
Please add ..boxShadow = <BoxShadow>[] to your code.
Final code:
EasyLoading.instance ..displayDuration = const Duration(milliseconds: 2000) ..loadingStyle = EasyLoadingStyle.custom ..indicatorSize = 60 ..textColor = Colors.black ..radius = 20 ..backgroundColor = Colors.transparent ..maskColor = Colors.white ..indicatorColor = Colors.black54 ..userInteractions = false ..dismissOnTap = false ..boxShadow = <BoxShadow>[] ..indicatorType = EasyLoadingIndicatorType.cubeGrid;
This works. Thank you so much.