*ImageVector Wizard n*ow available for IntelliJ ID...
# feed
m
*ImageVector Wizard n*ow available for IntelliJ IDEA! intellij idea Hey everyone 👋🏻 Great news—*ImageVector Wizard* is now compatible with IntelliJ IDEA! The UI has also been fully rewritten with Compose. Features for those new to the plugin: • Convert multiple SVG & XML to ImageVector • Optimize SVG & XML before conversion (using svgo & avocado) Check out the plugin here.

https://youtu.be/UMclvz4fvg0â–ľ

❤️ 7
h
Great job, but I have a question about this, didn't Google move away from this type of approach for their Material Icons and are now removing it in favor of XML?
m
Thanks! Actually, in Jetpack Compose and Compose Multiplatform, ImageVector is still the preferred way to handle vector graphics afaik, especially for custom icons and performance benefits in Compose-based UIs
👍 1
k
It's a good approach for the application icons, but it's not suitable for icon pack libraries
d
@Konstantin Tskhovrebov Speaking of icon pack libraries. Is there any guidance on how to create one? I couldn't manage to use composeResources in the importing application so far.
k
Should work. Submit an issue if it doesn't, please. With a reproducer
d
So the contents of
composeResources
in a library should be available as
<http://Res.drawable.xxx|Res.drawable.xxx>
in the main application?
k
If you configure the Res as public - yes
d
That did the trick. Thanks.