Created
January 29, 2020 21:13
-
-
Save JonathanMonga/4e3f901a4ca3b56b1dc47c068c62625e to your computer and use it in GitHub Desktop.
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
final rowConstant = Row( | |
crossAxisAlignment: CrossAxisAlignment.center, | |
children: <Widget>[ | |
Text( | |
"Period", | |
style: TextStyle( | |
fontWeight: FontWeight.bold, | |
color: Theme.of(context).textTheme.caption.color, | |
), | |
), | |
SizedBox( | |
width: 30, | |
), | |
Text( | |
"Last 30 days", | |
style: TextStyle( | |
fontWeight: FontWeight.bold, | |
fontSize: 16, | |
), | |
), | |
], | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment