Skip to content

Instantly share code, notes, and snippets.

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/76311da2b2706d76666b51b6b331d808 to your computer and use it in GitHub Desktop.
Save saqib-github-commits/76311da2b2706d76666b51b6b331d808 to your computer and use it in GitHub Desktop.
@Composable
fun ScrollToTopBtnWithThresholdAsKey(lazyListState: LazyListState, threshold: Int) {
val isEnabled by remember(threshold) { derivedStateOf { lazyListState.firstVisibleItemIndex > threshold } }
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