Skip to content

Commit 68322ee

Browse files
committed
Create constants.dart
1 parent a5dbc45 commit 68322ee

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

lib/constants.dart

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)