AlertDialog
In Material 3 Compose
@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") },
)
}
}