do we have a way to convert a compose view into a ...
# compose
k
do we have a way to convert a compose view into a drawable? I know there's a way of doing so with regular android views via
getDrawableCache()
. Is there something that compose has available if i need to pass a view as a drawable in Android?
r
Render the Composable into a
Bitmap
, and create a
BitmapDrawable
k
thank you! i'll take a look 👍🏾