Skip to content

Instantly share code, notes, and snippets.

@shorthouse
Created February 4, 2025 17:41
Show Gist options
  • Save shorthouse/e49ee1ed2d12edfabfad2004e6ae0be4 to your computer and use it in GitHub Desktop.
Save shorthouse/e49ee1ed2d12edfabfad2004e6ae0be4 to your computer and use it in GitHub Desktop.
@Composable
fun MovieItem(
movie: Movie,
modifier: Modifier = Modifier
) {
Card(
modifier = modifier
.fillMaxWidth()
.padding(4.dp),
elevation = CardDefaults.cardElevation(4.dp)
) {
Text(
text = movie.name,
modifier = Modifier.padding(16.dp)
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment