Skip to content

Instantly share code, notes, and snippets.

@waseefakhtar
Created August 21, 2021 17:40
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/21930473df8648da53052c076d487fac to your computer and use it in GitHub Desktop.
Save waseefakhtar/21930473df8648da53052c076d487fac to your computer and use it in GitHub Desktop.
@Composable
private fun Title(
puppy: Puppy
) {
Column(modifier = Modifier.padding(start = 16.dp, end = 16.dp, bottom = 16.dp, top = 16.dp)) {
Text(
text = puppy.title,
style = MaterialTheme.typography.h5,
fontWeight = FontWeight.Bold
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment