<Draw a circle behind BadgeBox to make it more vis...
# stackoverflow
u
Draw a circle behind BadgeBox to make it more visible, circle getting too small My code: IconButton(onClick = { /*TODO*/ }) { BadgedBox( modifier = Modifier.drawBehind { drawCircle( color = Color.LightGray, center = Offset( this.size.maxDimension / 2, this.size.maxDimension / 2 ), radius = 10f ) }, badge = { Badge(modifier = Modifier.size(12.dp)) {} }, ) { Icon(imageVector =...