set backgroundColor transparent not work ,but show black
EasyLoading.instance ..indicatorType = EasyLoadingIndicatorType.circle ..loadingStyle = EasyLoadingStyle.custom ..indicatorSize = 20.0 ..backgroundColor = Colors.transparent
Thanks for taking the time to open an issue. I will have a look and answer as soon as possible.
@programer001 I encountered the same issue, and that unexpected behavior is caused by the code below. https://github.com/nslogx/flutter_easyloading/blob/develop/lib/src/widgets/container.dart#L204
So, maybe it will be good to insert last line.
EasyLoading.instance
..indicatorType = EasyLoadingIndicatorType.circle
..loadingStyle = EasyLoadingStyle.custom
..indicatorSize = 20.0
..backgroundColor = Colors.transparent
..boxShadow = [] <- ADD THIS LINE
@nslogx
Thank you for creating this nice package.
Some people who use EasyLoadingStyle.custom may confuse about this behavior,
so it may be good to describe how to change black background with EasyLoadingStyle.custom.