Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@waseefakhtar
Last active August 21, 2021 19:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save waseefakhtar/ba624d1f2c08913c34381fe17ed5ffb6 to your computer and use it in GitHub Desktop.
Save waseefakhtar/ba624d1f2c08913c34381fe17ed5ffb6 to your computer and use it in GitHub Desktop.
@Composable
private fun ProfileContent(puppy: Puppy, containerHeight: Dp) {
Column {
Title(puppy)
ProfileProperty(stringResource(R.string.sex), puppy.sex)
ProfileProperty(stringResource(R.string.age), puppy.age.toString())
ProfileProperty(stringResource(R.string.personality), puppy.description)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment