Last active
June 23, 2021 12:58
-
-
Save catalinghita8/d2c8153b4eedae232eb5ea01d275ff0d 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(pictureDrawableId: Int) { | |
| Card( ... ) { | |
| Image( | |
| painter = painterResource(id = pictureDrawableId), | |
| ... | |
| ) | |
| } | |
| } | |
| @Composable | |
| fun ProfileContentComposable(name: String, lastActivityMinutes: Int) { | |
| Column( ... ) { | |
| Text(name, fontWeight = FontWeight.Bold) | |
| Text( | |
| text = "Active now", | |
| ... | |
| ) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment