Skip to content

Instantly share code, notes, and snippets.

@Elvis10ten
Last active March 7, 2018 15:36
Show Gist options
  • Select an option

  • Save Elvis10ten/8d4e46bbac8f4187cb229975705229c9 to your computer and use it in GitHub Desktop.

Select an option

Save Elvis10ten/8d4e46bbac8f4187cb229975705229c9 to your computer and use it in GitHub Desktop.
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