Skip to content

Instantly share code, notes, and snippets.

@ExperimentalCoroutinesApi
@Composable
fun loadPicture(url: String, @DrawableRes defaultImage: Int): MutableState<Bitmap?> {
val bitmapState: MutableState<Bitmap?> = mutableStateOf(null)
// show default image while image loads
Glide.with(ContextAmbient.current)
.asBitmap()
.load(defaultImage)