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 a5dbc45 commit 68322eeCopy full SHA for 68322ee
lib/constants.dart
@@ -0,0 +1,13 @@
1
+import 'package:flutter/material.dart';
2
+class Constants {
3
+ static Color defaultColor = Color(0xFFF8F8F8);
4
+ static Color primaryColor = Color(0xFF1AAD19);
5
+ static Color warnColor = Color(0xFFE64340);
6
+ static Color borderColor = Color(0xFFE5E5E5);
7
+
8
9
+ static double paddingVertical = 10;
10
+ static double paddingHorizontal = 15;
11
+ static double btnFontSize = 18;
12
+ static double btnHeight = 46;
13
+}
0 commit comments