Four destinations
Tap an item to move the selection.
var selected by remember { mutableIntStateOf(0) }
NavigationBar {
NavigationBarItem(
selected = selected == 0,
onClick = { selected = 0 },
icon = { Icon(Icons.Filled.Home, "Home") },
label = { Text("Home") }
)
// Search, Favorites, Profile ...
}