-
-
Save shorthouse/e49ee1ed2d12edfabfad2004e6ae0be4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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