Is it possible to convert the material icons which...
# compose
b
Is it possible to convert the material icons which are of type compose ImageVector to a Drawable. Trying to pass icon as a Drawable to an older library.
c
There is not, but you can add individual Material Icon vector drawables as resources from the Vector Asset wizard, which can be used in both Compose and Views (XML)
b
Thanks!