Skip to content

Instantly share code, notes, and snippets.

@tdcolvin
Created January 31, 2023 11:23
Show Gist options
  • Save tdcolvin/c0db070069161f481648ad22e54adf84 to your computer and use it in GitHub Desktop.
Save tdcolvin/c0db070069161f481648ad22e54adf84 to your computer and use it in GitHub Desktop.
if (photoUri != null) {
//Use Coil to display the selected image
val painter = rememberAsyncImagePainter(
ImageRequest
.Builder(LocalContext.current)
.data(data = photoUri)
.build()
)
Image(
painter = painter,
contentDescription = null
...
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment