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

ShortNavigationBarItem

Kotlin
@Composable
fun ShortNavigationBarItemSample() {
    ShortNavigationBar {
        ShortNavigationBarItem(
            selected = true,
            onClick = {},
            icon = { Icon(Icons.Filled.Home, contentDescription = null) },
            label = { Text("Home") },
        )
        ShortNavigationBarItem(
            selected = false,
            onClick = {},
            icon = { Icon(Icons.Filled.Person, contentDescription = null) },
            label = { Text("Profile") },
        )
    }
}