Skip to content

Instantly share code, notes, and snippets.

@Zambrella
Created September 22, 2019 17:13
Show Gist options
  • Save Zambrella/1bd26edc00ba24cfcdfd12034543f9a1 to your computer and use it in GitHub Desktop.
Save Zambrella/1bd26edc00ba24cfcdfd12034543f9a1 to your computer and use it in GitHub Desktop.
constants file
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