。
这是我的BottomNavigaionItem的外观。
BottomNavigationItem(
selected = selected,
onClick = {...}
icon = {
Icon(
imageVector = if (selected) navItem.iconFilled else navItem.iconOutlined,
contentDescription = navItem.route,
// modifier = Modifier.background(Color.DarkGray, shape = RoundedCornerShape(10.dp)).padding(10.dp)
)
},
label = {...},
selectedContentColor = MaterialTheme.colors.onPrimary,
unselectedContentColor = MaterialTheme.colors.onPrimary.copy(0.4f)
)
}
}
1条答案
按热度按时间qzwqbdag1#
只需使用M3和
NavigationBar
: