Last active
March 7, 2018 15:36
-
-
Save Elvis10ten/8d4e46bbac8f4187cb229975705229c9 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
| Text _getTitleWidget(String currencyName) { | |
| return new Text( | |
| currencyName, | |
| style: new TextStyle(fontWeight: FontWeight.bold), | |
| ); | |
| } | |
| Text _getSubtitleWidget(String priceUsd, String percentChange1h) { | |
| return new Text('\$$priceUsd\n1 hour: $percentChange1h%'); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment