Last active
December 10, 2019 19:16
-
-
Save mukireus/985ac5c53e0a4d9594814cb05cbbe550 to your computer and use it in GitHub Desktop.
ui_helper.dart
This file contains hidden or 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'; | |
import 'package:flutter_screenutil/flutter_screenutil.dart'; | |
class UIHelper { | |
// STRING | |
static final String createAccount = "Create\nAccount"; | |
static final String welcomeBack = "Welcome\nBack"; | |
static final String name = "Name"; | |
static final String hello = "Hello"; | |
static final String email = "Email address"; | |
static final String username = "Username"; | |
static final String password = "Password"; | |
// IMAGES | |
static final String muzPhoto = "assets/images/muz_login.png"; | |
static final String grapePhoto = "assets/images/grape_login.png"; | |
// MUZ LOGIN COLORS | |
static const Color MUZ_PRIMARY_COLOR = Color(0XFF3C67F7); | |
static const Color MUZ_BACKGROUND_COLOR = Color(0xFFF2F3F8); | |
static const Color MUZ_SHADOW = Color(0x70000000); | |
static const Color MUZ_BUTTONSHADOW = Color(0x403C67F7); | |
static const Color MUZ_TEXT_COLOR = Color(0xFF5A7BB5); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment