Skip to content

Instantly share code, notes, and snippets.

@akitikkx
Created March 16, 2022 18:54
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/25a50f224e36f8163399c3db9132dffb to your computer and use it in GitHub Desktop.
Save akitikkx/25a50f224e36f8163399c3db9132dffb to your computer and use it in GitHub Desktop.
@ExperimentalMaterialApi
@Composable
fun ShowDetailScreen(...) {
...
ModalBottomSheetLayout(
...
sheetContent = {
Surface(
Modifier
.fillMaxWidth()
) {
ShowCastBottomSheetItem(showCast = selectedCastMemberState.value)
}
},
scrimColor = Color.Black.copy(alpha = 0.32f)
) {
Column {
Box(modifier = Modifier.fillMaxSize()) {
DetailArea(
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment