Skip to content

Instantly share code, notes, and snippets.

@akitikkx
Created March 16, 2022 17:18
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 akitikkx/3fc13607db3774164c37b081dc5a8cba to your computer and use it in GitHub Desktop.
Save akitikkx/3fc13607db3774164c37b081dc5a8cba to your computer and use it in GitHub Desktop.
@Composable
fun DetailArea(
...
showCast: List<ShowCast>?,
onCastItemClick: (item: ShowCast) -> Unit
) {
val scrollState = rememberScrollState()
Column(
modifier = Modifier
.fillMaxWidth()
.verticalScroll(scrollState)
) {
...
showCast?.let {
if (it.isNotEmpty()) {
ShowCastList(it) { showCastItem ->
onCastItemClick(showCastItem)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment