Skip to content

Instantly share code, notes, and snippets.

@kirshiyin89
Created August 24, 2020 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kirshiyin89/c71bcb5a8b4f621c56438cb651335a7b to your computer and use it in GitHub Desktop.
Save kirshiyin89/c71bcb5a8b4f621c56438cb651335a7b to your computer and use it in GitHub Desktop.
TextStyle for service info.
TextStyle _getStyleByServiceStatus(bool running) {
if (!running) {
return TextStyle(fontStyle: FontStyle.italic);
}
return TextStyle();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment