Last active
June 23, 2021 12:50
-
-
Save catalinghita8/61ba5913d5db186fb727abcaf649a1f4 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() { | |
| Card( | |
| modifier = Modifier | |
| .wrapContentSize() | |
| .clip(RoundedCornerShape(4.dp)) | |
| .background(color = Helper.getWhiteColor()) | |
| .padding(16.dp), | |
| ) { | |
| Row(modifier = Modifier.height(intrinsicSize = IntrinsicSize.Max)) { | |
| ProfilePictureComposable() | |
| ProfileContentComposable() | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment