aboutsummaryrefslogtreecommitdiffstats
path: root/lib/core/utils/helpers.dart
blob: f2dbca21e886c15c12e12b8b71592b1972442155 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);
}