Last active
January 20, 2019 10:42
-
-
Save shubie/5d5b99b6891d247c509a6ae8c50a9d40 to your computer and use it in GitHub Desktop.
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
child: Column( | |
children: <Widget>[ | |
Row( | |
mainAxisAlignment: MainAxisAlignment.spaceBetween, | |
children: <Widget>[ | |
IconButton( | |
icon: Icon( | |
Icons.menu, | |
color: Colors.white, | |
), | |
onPressed: () {}, | |
), | |
Text("YOUR PORTFOLIO (24H)", | |
style: TextStyle( | |
color: Colors.white, | |
fontSize: 20.0, | |
fontWeight: FontWeight.w500)), | |
IconButton( | |
icon: Icon( | |
FontAwesomeIcons.bell, | |
color: Colors.white, | |
), | |
onPressed: () {}, | |
) | |
], | |
), | |
SizedBox(height: 40), | |
Text( | |
"43,729.00", | |
style: TextStyle( | |
color: Colors.white, | |
fontSize: 45.0, | |
fontWeight: FontWeight.bold), | |
), | |
SizedBox(height: 20), | |
Text( | |
r"+ $3,157.67 (23%)", | |
style: TextStyle( | |
color: Colors.white, | |
fontSize: 18.0, | |
fontWeight: FontWeight.w300), | |
) | |
], | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment