We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37df1a1 commit 2d81580Copy full SHA for 2d81580
lib/src/theme.dart
@@ -53,6 +53,12 @@ class EasyLoadingTheme {
53
? Colors.black.withOpacity(0.9)
54
: Colors.white;
55
56
+ /// boxShadow color of loading
57
+ static List<BoxShadow>? get boxShadow =>
58
+ EasyLoading.instance.loadingStyle == EasyLoadingStyle.custom
59
+ ? EasyLoading.instance.boxShadow!
60
+ : null;
61
+
62
/// font color of status
63
static Color get textColor =>
64
EasyLoading.instance.loadingStyle == EasyLoadingStyle.custom
0 commit comments