Chris B
09/23/2024, 8:44 AMDrawableResource
. I'd like to draw it on a canvas, like so:
Canvas(Modifier.fillMaxSize()) { drawImage(image) }
... but it doesn't work, because I need an ImageBitmap
. What's the best way of doing this?Nthily
09/23/2024, 9:14 AMval image = ImageBitmap.imageResource(...)
Chris B
09/23/2024, 9:18 AM