Created
December 25, 2022 21:01
-
-
Save josue1dario2/58ae64f8384b7119ee7acfe3a584a9b4 to your computer and use it in GitHub Desktop.
2 - CustomTextStyle
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
class CustomTextStyle { | |
static const TextStyle percentSubtitle = TextStyle( | |
fontWeight: FontWeight.w400, | |
fontSize: 13, | |
color: Color(0xFFFFFFFF), | |
fontFamily: 'Poppins'); | |
static const TextStyle percentTitle = TextStyle( | |
fontSize: 25, | |
color: Colors.white, | |
fontWeight: FontWeight.w800, | |
fontFamily: 'Poppins'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment