Question:
I want to implement a Sign In With Google button in Jetpack Compose. I downloaded this SVG and added a white background in Inkscape so it would be usable in both the recommended styles (white or blue button background), then imported it into resources.This is how it looks in the text editor:
Answer:
TheIcon
applies the default tint LocalContentColor.current.copy(alpha = LocalContentAlpha.current)
Use
tint= Color.Unspecified
to avoid it:
If you have better answer, please add a comment about this, thank you!