Skip to content

Instantly share code, notes, and snippets.

@catalinghita8
Created July 7, 2021 13:12
Show Gist options
  • Save catalinghita8/e2c82e6f19f400b42c9ce2b3f875e846 to your computer and use it in GitHub Desktop.
Save catalinghita8/e2c82e6f19f400b42c9ce2b3f875e846 to your computer and use it in GitHub Desktop.
@Composable
fun FoodCategoryDetailsScreen(state: FoodCategoryDetailsContract.State) {
val scrollState = rememberLazyListState()
Column {
...
LazyColumn(state = scrollState) { ... }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment