Last active
June 24, 2022 07:25
-
-
Save ahmeedev/84ff0c3c2453a59aebd580523291d8d0 to your computer and use it in GitHub Desktop.
Flutter templates
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'; | |
const kPrimary = Color(0xFF); | |
const kPrimaryVariant = Color(0xFF); | |
const kOnPrimary = Color(0xFF); | |
const kSecondary = Color(0xFF); | |
const kSecondaryVariant = Color(0xFF); | |
const kOnSecondary = Color(0xFF); | |
const kBackground = Color(0xFF); | |
const kOnBackground = Color(0xFF); | |
const kSurface = Color(0xFF); | |
const kOnSurface = Color(0xFF); | |
const kError = Color(0xFF); | |
const kOnError = Color(0xFF); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment