Pardip
09/16/2021, 10:19 AM_BottomNavigationItem_
but it’s not working. How can we add padding at each items. I want to add padding as in screenshot.
Items.forEach{ item->
BottomNavigationItem(
selected = isSelected,
icon = {
Image(
imageVector = ImageVector.vectorResource(id = item.iconId),
contentDescription = null,
)
},
label = {
Text(item.label)
},
onClick = { },
),
modifier = Modifier.padding(horizontal = 16.DP)
}