Good morning people, how would you go for changing...
# compose
c
Good morning people, how would you go for changing a Painter color filter? I found “applyColorFilter” but I can’t access any method inside of Painter. Slightly confused on how I should proceed. Stupid, problem solved, colorFilter can be used in Image:
Copy code
Image(
    painter = painterResource(R.drawable.ic_articles),
    contentDescription = null,
    contentScale = ContentScale.Fit,  
    colorFilter = null
)