How can I use vector drawable with the original `a...
# compose
y
How can I use vector drawable with the original
android:fillColor
in compose? `painterResource`seems to override these fillColor with Theme Colors.
a
painterResource
doesn't do this. If you are using
Icon
, you need to specify
tint = Color.Unspecified
.
y
Thanks
tint = Color.Unspecified
in Icon is exactly what i need. You saved my day.