<Adding spacing between BottomNavigationItem's ico...
# stackoverflow
u
Adding spacing between BottomNavigationItem's icon &amp; label I'm trying to build out my Bottom navigation like this: @Composable fun BottomNavBar(navController: NavController) { Column( Modifier.background(colorResource(id = R.color.pastel_orange_white)) ) { BottomNavigation( modifier = Modifier .defaultMinSize(minHeight = 70.dp), backgroundColor = colorResource(id = R.color.bottom_nav_dark) ) { val navItems = arrayOf( BottomNavItem(...