Skip to content

Instantly share code, notes, and snippets.

@catalinghita8
Last active June 23, 2021 12:50
Show Gist options
  • Select an option

  • Save catalinghita8/61ba5913d5db186fb727abcaf649a1f4 to your computer and use it in GitHub Desktop.

Select an option

Save catalinghita8/61ba5913d5db186fb727abcaf649a1f4 to your computer and use it in GitHub Desktop.
@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