Android Studio – How to create BadgeBox with latest compose version?
With Jetpack Compose version "1.0.1" I used Badge Box like This BadgedBox( badgeContent = { Text(text = "5") }, backgroundColor = Primary, modifier = Modifier ) { Icon( imageVector = Icons.Outlined.ShoppingCart, contentDescription = "shopping cart", tint = Color.Black ) }…