Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created January 4, 2026 08:57
Show Gist options
  • Select an option

  • Save skydoves/8808cca0e1d38d76c3be9706f593f960 to your computer and use it in GitHub Desktop.

Select an option

Save skydoves/8808cca0e1d38d76c3be9706f593f960 to your computer and use it in GitHub Desktop.
Landscapist: Basic LandscapistImage
import com.skydoves.landscapist.image.LandscapistImage
@Composable
fun ProfileImage(imageUrl: String) {
LandscapistImage(
model = imageUrl,
contentDescription = "Profile photo",
modifier = Modifier
.size(120.dp)
.clip(CircleShape),
contentScale = ContentScale.Crop
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment