Last active
June 23, 2021 13:01
-
-
Save catalinghita8/fac6c2cb50eeb614678a65dcfcd9cb55 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 ProfileCardComposable(userProfile: UserProfile) { | |
| val onlineStatus = remember { mutableStateOf(userProfile.isOnline) } | |
| Card(...) { | |
| Row(...) { | |
| ProfilePictureComposable(onlineStatus, userProfile.profilePictureDrawableId) | |
| ProfileContentComposable(onlineStatus, userProfile.name, userProfile.lastActivityMinutes) | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment