How to add logo company at top loading icaditor
Thanks for taking the time to open an issue. I will have a look and answer as soon as possible.
To do this set the EasyLoading.instance.indicatorWidget to point to a custom widget that you have created. You can copy one of the existing indicators and just customize it to your needs.
@sleewok thanks for support
if you have a solution, can you please share a code example? @sleewok @nguyenthao1988
Hopefully this helps:
void configEasyLoading() { EasyLoading.instance ..backgroundColor = Colors.transparent ..progressColor = Colors.white ..indicatorWidget = MySpinKitRing(color: Colors.blue) ..boxShadow = <BoxShadow>[] // removes black background ..loadingStyle = EasyLoadingStyle.light ..textColor = Colors.black ..indicatorColor = Colors.blue // color of animated loader ..maskColor = Colors.white.withOpacity(0.75) ..maskType = EasyLoadingMaskType.custom ..radius = 180 ..loadingStyle = EasyLoadingStyle.custom ..userInteractions = true ..dismissOnTap = true; }