Created
January 4, 2026 08:58
-
-
Save skydoves/5729ef88bbb54d4c6dc287a4dba118cd to your computer and use it in GitHub Desktop.
Landscapist: Migration from Glide
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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