Skip to content

Instantly share code, notes, and snippets.

@KatieBarnett
Created December 12, 2022 11:02
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 KatieBarnett/bdaabbc58362bc8aca4ac8a2193f3727 to your computer and use it in GitHub Desktop.
Save KatieBarnett/bdaabbc58362bc8aca4ac8a2193f3727 to your computer and use it in GitHub Desktop.
Single item scroll state detecting scroll
...
val scrollState = rememberScrollState()
val isScrolled = remember { derivedStateOf { scrollState.value > 0 } }
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment