How can i tweek blendMode so that the icon is draw...
# compose
m
How can i tweek blendMode so that the icon is drawn white?
Screenshot 2023-09-01 at 16.16.25.png
only way it is working is if i copy Icon source and apply blendMode to colorFilter
Copy code
Image(
    modifier = Modifier
        .size(14.dp),
    painter = painter,
    colorFilter = ColorFilter.tint(Color.White, BlendMode.SrcAtop)
)
It appears as it is now, i need to use image. Icon cannot set colorFilter