Is it possible to create an Icon composable with a...
# compose
t
Is it possible to create an Icon composable with a Resource ID? If not, what's the best way to do it with a vector drawable?
a
using
vectorResource
?
m
Icon(imageVector = vectorResource(id = R.drawable.*)
t
Thanks @Matt Lien, that was all I needed 👍