How to load image from URL in Jetpack Compose? [duplicate]
You can use Coil for compose: https://coil-kt.github.io/coil/compose/ Add the dependency: implementation(“io.coil-kt:coil-compose:2.0.0-rc01”) and use it like this: Image( painter = rememberAsyncImagePainter(“https://www.example.com/image.jpg”), contentDescription = null, modifier = Modifier.size(128.dp) )