Skip to content

Instantly share code, notes, and snippets.

@sagar2093
Created May 10, 2020 16:35
Show Gist options
  • Save sagar2093/70b731c3a75a669ad28d5e9e6f15917d to your computer and use it in GitHub Desktop.
Save sagar2093/70b731c3a75a669ad28d5e9e6f15917d to your computer and use it in GitHub Desktop.
@Composable
fun UniversityCard(university: University) {
Box(padding = 8.dp) {
Card(
shape = RoundedCornerShape(4.dp),
elevation = 4.dp,
color = Color.White
) {
Clickable(
modifier = Modifier.ripple(),
onClick = {
// todo click handling
}) {
Column(modifier = Modifier.padding(16.dp).fillMaxWidth()) {
Text(
text = university.uniName,
style = themeTypography.h6
)
Text(text = university.uniAddress)
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment