Is there a possibility to load multi-path colours ...
# compose
p
Is there a possibility to load multi-path colours in Vector Drawable in compose we finding a show stopper to make this work. i.e:
Copy code
<path
        android:fillColor="?secondaryColor"
        android:pathData="M10, 0,4.48 0....." />
    <path
        android:fillColor="?primaryColor"
        android:pathData="M8,15L3,59L8,12.17L15....." />
How can I tint them separately in compose as we did in XML?