Skip to content

Instantly share code, notes, and snippets.

@akitikkx
Last active March 16, 2022 18:33
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/7a422e2b5f5bc208a9d6b355941e80c2 to your computer and use it in GitHub Desktop.
Save akitikkx/7a422e2b5f5bc208a9d6b355941e80c2 to your computer and use it in GitHub Desktop.
@ExperimentalMaterialApi
@Composable
fun ShowDetailScreen(
viewModel: ShowDetailViewModel = hiltViewModel(),
...
) {
...
ModalBottomSheetLayout( // <---- This was Surface
sheetState = modalBottomSheetState,
sheetContent = {
Surface(
Modifier
.fillMaxWidth()
) {
ShowCastBottomSheetItem(showCast = selectedCastMemberState.value)
}
},
scrimColor = Color.Black.copy(alpha = 0.32f)
) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment