Created
September 22, 2019 17:13
-
-
Save Zambrella/1bd26edc00ba24cfcdfd12034543f9a1 to your computer and use it in GitHub Desktop.
constants file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
const double kVerticalMargin = 16; | |
const double kHorizontalMargin = 22; | |
const double kSizedBoxHeight = 20; | |
const TextStyle kButtonTextStyle = TextStyle( | |
fontSize: 16, | |
color: Color(0xffFEFEFE), | |
); | |
const TextStyle kAppBarTextStyle = TextStyle( | |
fontSize: 20, | |
color: Color(0xffFEFEFE), | |
); | |
const TextStyle kPrimaryTextStyle = TextStyle( | |
fontSize: 32, | |
); | |
const TextStyle kSecondaryTextStyle = TextStyle( | |
fontSize: 18, | |
); | |
const Color kDireRed = Color(0xffA83806); | |
const Color kRadiantGreen = Color(0xff598307); | |
const Color kBackGroundColour = Color(0xffEBEBEB); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment