Skip to content

Instantly share code, notes, and snippets.

@saqib-github-commits
Last active May 30, 2023 18:53
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 saqib-github-commits/3815d84b4d71f5158ee987f9c478491a to your computer and use it in GitHub Desktop.
Save saqib-github-commits/3815d84b4d71f5158ee987f9c478491a to your computer and use it in GitHub Desktop.
@Composable
fun ScrollToTopBtnWithoutDerivedStateOf(lazyListState: LazyListState) {
val isEnabled = lazyListState.firstVisibleItemIndex > 0
Button(onClick = { /*TODO*/ }, enabled = isEnabled) {
Text(text = "Scroll To Top")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment