-
Notifications
You must be signed in to change notification settings - Fork 222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can i remove the background color. I would like the background to be transparent #135
Comments
Thanks for taking the time to open an issue. I will have a look and answer as soon as possible. |
Please add Final code: |
@BBarisKilic Thank you very much! I just have same question now. Add a BoxShadow perfect working ! |
Didn't work for me. I'm trying to use custom widget for loading but it is still showing black background wrapping my widget. |
Please attach your code snippet at here |
My code:
What I'm getting in ui: What I need? |
You forgot to add Let me know if you still face any issue ! |
Yeah, it worked also had to add
because they can't be null when loadingStyle is custom |
👍🏻 Thanks for the solution, attached the code so more people can see it
|
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.black ..userInteractions = false ..dismissOnTap = false ..indicatorType = EasyLoadingIndicatorType.cubeGrid;
The above is not working for me
The text was updated successfully, but these errors were encountered: