Skip to content

Instantly share code, notes, and snippets.

@saqib-github-commits
Created May 29, 2023 22:00
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/662c4ca972861ad5f9f87586a74b5350 to your computer and use it in GitHub Desktop.
Save saqib-github-commits/662c4ca972861ad5f9f87586a74b5350 to your computer and use it in GitHub Desktop.
@Composable
fun ScrollToTopBtnWithDerivedStateOf(lazyListState: LazyListState) {
val isEnabled by remember { derivedStateOf { 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