Skip to content

Instantly share code, notes, and snippets.

@pablobaldez
Created April 22, 2021 19:08
Show Gist options
  • Select an option

  • Save pablobaldez/acc17bad48aef8dfaeab1044ef2a0433 to your computer and use it in GitHub Desktop.

Select an option

Save pablobaldez/acc17bad48aef8dfaeab1044ef2a0433 to your computer and use it in GitHub Desktop.
Theme usage
@Composable
fun MyScreen() {
NebraskaTheme(Trade) {
Column {
Text(text = "text with status positive", color = LocalColorSchema.current.status.positive.color)
Button(onClick = { /*TODO*/ }) {
Text(text = "Trade Button")
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment