Skip to content

Instantly share code, notes, and snippets.

@5AbhishekSaxena
Created December 27, 2022 22:52
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 5AbhishekSaxena/99c42615159973e59c6ce0a1571a0e69 to your computer and use it in GitHub Desktop.
Save 5AbhishekSaxena/99c42615159973e59c6ce0a1571a0e69 to your computer and use it in GitHub Desktop.
@Composable
fun StudentListItem(student: Student) {
Card {
Row(
modifier = Modifier
.fillMaxWidth()
.padding(vertical = 8.dp, horizontal = 16.dp)
) {
Text(text = student.name)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment