This is the code of like icon svg and I have changed the color to pink from black, but when I try to display the icon using compose it's appearing as black only as u can see down
The compose code is
Icon(painter = painterResource(id = R.drawable.liked), contentDescription =null )
Try this?
Icon(painter = painterResource(id = R.drawable.liked), contentDescription = null,
tint = Color(0xFFE91E63))