Skip to content

Instantly share code, notes, and snippets.

@mazzouzi
Last active September 24, 2022 11:45
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 mazzouzi/95cfd05eba7a74aa5adaa3b505fa7bf7 to your computer and use it in GitHub Desktop.
Save mazzouzi/95cfd05eba7a74aa5adaa3b505fa7bf7 to your computer and use it in GitHub Desktop.
Body composable (scrollState)
@Composable
private fun Body(scroll: ScrollState) {
Column(
horizontalAlignment = Alignment.CenterHorizontally,
modifier = Modifier.verticalScroll(scroll)
)
.
.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment