Last active
January 24, 2019 06:40
-
-
Save trey-rosius/3597584ce44e9d31497a591aa73777ab 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
| Padding( | |
| padding: const EdgeInsets.only(left: 8.0), | |
| child: Row( | |
| mainAxisAlignment: MainAxisAlignment.end, | |
| children: <Widget>[ | |
| Row( | |
| children: <Widget>[ | |
| Text( | |
| "\$84", | |
| style: TextStyle( | |
| fontSize: 24.0, | |
| color: Colors.white, | |
| fontWeight: FontWeight.bold), | |
| ), | |
| Padding( | |
| padding: const EdgeInsets.only(top: 5.0), | |
| child: Text( | |
| ".99", | |
| style: | |
| TextStyle(fontSize: 14.0, color: Colors.white), | |
| ), | |
| ) | |
| ], | |
| ), | |
| ], | |
| ), | |
| ), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment