'How to load svg images in compose properly?
Solution 1:[1]
Use Image composable instead of Icon. Icon is doing tint by default. Source - you can read the docs for Icon.
Icon component that draws [imageVector] using [tint], defaulting to [LocalContentColor].
Also - you can just use painterResource instead of ImageVector.vectorResource.
And just for the future - never attach code as a screenshot on StackOverflow. Just attach code
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Jakoss |


