Created
September 22, 2019 15:37
-
-
Save Zambrella/5382d8c9fe9e50af634a1fe5fdba02c2 to your computer and use it in GitHub Desktop.
File for keeping all the variables that will stay the same once the app is built
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, | |
); | |
const TextStyle kPrimaryTextStyle = TextStyle( | |
fontSize: 32, | |
); | |
const TextStyle kSecondaryTextStyle = TextStyle( | |
fontSize: 16, | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment