Created
January 4, 2026 08:57
-
-
Save skydoves/8808cca0e1d38d76c3be9706f593f960 to your computer and use it in GitHub Desktop.
Landscapist: Basic LandscapistImage
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
| 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