Last active
June 23, 2021 11:49
-
-
Save catalinghita8/c68549ef25c5a908e8cccf9dba90eb6e 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() { | |
| Card( | |
| shape = CircleShape, | |
| border = BorderStroke(2.dp, color = Helper.getGreenColor()), | |
| modifier = Modifier.size(48.dp), | |
| elevation = 4.dp | |
| ) { | |
| Image( ... ) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment