summaryrefslogtreecommitdiffstats
path: root/lib/core/utils/helpers.dart
diff options
context:
space:
mode:
Diffstat (limited to 'lib/core/utils/helpers.dart')
-rw-r--r--lib/core/utils/helpers.dart17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/core/utils/helpers.dart b/lib/core/utils/helpers.dart
new file mode 100644
index 0000000..f2dbca2
--- /dev/null
+++ b/lib/core/utils/helpers.dart
@@ -0,0 +1,17 @@
+import 'package:flutter_ics_homescreen/export.dart';
+
+class Helpers {
+ static Shadow dropShadowRegular = Shadow(
+ color: Colors.black.withOpacity(0.70),
+ offset: const Offset(1, 2),
+ blurRadius: 3);
+ static BoxShadow boxDropShadowRegular = BoxShadow(
+ color: Colors.black.withOpacity(0.70),
+ offset: const Offset(1, 2),
+ blurRadius: 3);
+
+ static Shadow dropShadowBig = Shadow(
+ color: Colors.black.withOpacity(0.70),
+ offset: const Offset(1, 4),
+ blurRadius: 4);
+}