Skip to content

Instantly share code, notes, and snippets.

@zurche
Created November 11, 2023 15:29
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 zurche/e82fc8e350073be6aa8697bac9f0f3b2 to your computer and use it in GitHub Desktop.
Save zurche/e82fc8e350073be6aa8697bac9f0f3b2 to your computer and use it in GitHub Desktop.
Base structure of nav bar
@Composable
@Preview
fun CryptoNavigation(modifier: Modifier = Modifier) {
Card(
modifier = modifier
.height(50.dp)
.fillMaxWidth(),
shape = RoundedCornerShape(50),
colors = CardDefaults.cardColors(containerColor = Color.Black)
) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment