Last active
June 23, 2021 11:45
-
-
Save catalinghita8/139be60220a39b1fb92e5c65273ae853 to your computer and use it in GitHub Desktop.
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
| @Composable | |
| fun ProfilePictureComposable() { | |
| Image( | |
| painter = painterResource(id = R.drawable.profile_pic), | |
| contentScale = ContentScale.Crop, | |
| modifier = Modifier.size(48.dp), | |
| contentDescription = "Profile picture holder" | |
| ) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment