Skip to content

Instantly share code, notes, and snippets.

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

  • Save skydoves/5729ef88bbb54d4c6dc287a4dba118cd to your computer and use it in GitHub Desktop.

Select an option

Save skydoves/5729ef88bbb54d4c6dc287a4dba118cd to your computer and use it in GitHub Desktop.
Landscapist: Migration from Glide
// Before: Glide
GlideImage(
model = imageUrl,
contentDescription = "Photo",
modifier = Modifier.size(200.dp)
)
// After: LandscapistImage (same API)
LandscapistImage(
model = imageUrl,
contentDescription = "Photo",
modifier = Modifier.size(200.dp)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment