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

BottomNavigationItem

Kotlin
@Composable
fun BottomNavigationItemSample() {
    var selected by remember { mutableStateOf(true) }

    BottomNavigation {
        BottomNavigationItem(
            selected = selected,
            onClick = { selected = true },
            icon = { Icon(Icons.Filled.Home, contentDescription = "Home") },
            label = { Text("Home") },
        )
    }
}