Skip to content

Instantly share code, notes, and snippets.

@rubenquadros
Created September 4, 2021 16:26
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 rubenquadros/6f6c8a9a495ee8108742c7a2f996b2b5 to your computer and use it in GitHub Desktop.
Save rubenquadros/6f6c8a9a495ee8108742c7a2f996b2b5 to your computer and use it in GitHub Desktop.
Final video playlist
@Composable
fun VideoPlayList(
modifier: Modifier = Modifier,
gameVideos: List<VideoResultEntity>,
currentPlaying: State<Int>,
onVideoChange: (Int) -> Unit
) {
LazyColumn(modifier = modifier) {
itemsIndexed(
items = gameVideos,
key = { _, item -> item.id }
) { index, item ->
VideoItem(
index = index,
video = item,
currentPlaying = currentPlaying,
onVideoChange = onVideoChange
)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment