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