I can use
val image = +imageResource(R.drawable.header)
and use DrawImage(image) to load image from Drawable Resource,
But how do I load a string url into the DrawImage(image)?. I've tried using Glide, but it needs to load into imageView. meanwhile DrawImage(image) doesn't take input from imageView.
Thanks.