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