I was wondering when AndroidImageAsset is going to...
# compose
v
I was wondering when AndroidImageAsset is going to be exposed(it’s an internal class right now) so that I don’t have copy paste it. Moreover, is there an alternate way to do what I’m trying to do?
a
yes, you don't need to copy it anymore as there is a public extension function
fun Bitmap.asImageAsset(): ImageAsset
♥️ 1
☝️ 3
v
ohh I missed that! Thanks for pointing me in the right direction!