Skip to content

Instantly share code, notes, and snippets.

@KatieBarnett
Created January 13, 2025 04:51
Show Gist options
  • Save KatieBarnett/a586797d79e0e0bd4b6a5445420e27af to your computer and use it in GitHub Desktop.
Save KatieBarnett/a586797d79e0e0bd4b6a5445420e27af to your computer and use it in GitHub Desktop.
Displaying the image bitmap
loadedBitmap.let { bitmap ->
if (bitmap != null) {
Image(
provider = ImageProvider(bitmap),
contentDescription = null,
contentScale = ContentScale.Crop,
modifier = modifier,
)
} else {
CircularProgressIndicator()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment