🌈 Create new beautiful Compose Gradients with our new wesite ->

NavigationBarItem

Kotlin
@Composable
fun NavigationBarItemSample() {
    NavigationBar {
        NavigationBarItem(
            selected = true,
            onClick = {},
            icon = { Icon(Icons.Filled.Home, contentDescription = null) },
            label = { Text("Home") },
        )
        NavigationBarItem(
            selected = false,
            onClick = {},
            icon = { Icon(Icons.Filled.Favorite, contentDescription = null) },
            label = { Text("Favorites") },
        )
    }
}