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