Skip to content

Instantly share code, notes, and snippets.

@Skyyo
Created October 2, 2022 18:06
Show Gist options
  • Save Skyyo/2063cb14b5a65249db040497542a9026 to your computer and use it in GitHub Desktop.
Save Skyyo/2063cb14b5a65249db040497542a9026 to your computer and use it in GitHub Desktop.
perf_snippet_21
@Composable
private fun HorizontallyMovingButton(scrollProvider: () -> Float) {
Button(modifier = Modifier.graphicsLayer { translationX = scrollProvider() })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment