Skip to content

Instantly share code, notes, and snippets.

@lbenevento
Created September 5, 2021 21:48
Show Gist options
  • Save lbenevento/6d1ef3a664a316f37ac310dbca754ab5 to your computer and use it in GitHub Desktop.
Save lbenevento/6d1ef3a664a316f37ac310dbca754ab5 to your computer and use it in GitHub Desktop.
YourAppTheme {
val coroutineScope = rememberCoroutineScope()
val sheetState = rememberModalBottomSheetState(
initialvalue = ModalBottomSheetValue.Hidden
)
ModalBottomSheetLayout(
sheetContent = { YourSheetContent() },
sheetState = sheetState
) {
YourContent()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment