Skip to content

Instantly share code, notes, and snippets.

@zurche
Created November 11, 2023 15:45
Show Gist options
  • Save zurche/eab2b435ee646dc52860cd231c0f5085 to your computer and use it in GitHub Desktop.
Save zurche/eab2b435ee646dc52860cd231c0f5085 to your computer and use it in GitHub Desktop.
Preview trick
@Composable
@Preview
private fun NavButtonPreview() {
Row {
NavButton(icon = Icons.Filled.Check, isSelected = false)
NavButton(icon = Icons.Filled.Add, isSelected = true)
NavButton(icon = Icons.Filled.Build, isSelected = true)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment