Hi,  I tried to add padding at `_BottomNavigationI...
# compose
p
Hi,  I tried to add padding at
_BottomNavigationItem_
but it’s not working.  How can we add padding at each items. I want to add padding as in screenshot.
Copy code
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) 
}