Created
July 7, 2021 13:12
-
-
Save catalinghita8/e2c82e6f19f400b42c9ce2b3f875e846 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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