Created
October 2, 2022 18:06
-
-
Save Skyyo/2063cb14b5a65249db040497542a9026 to your computer and use it in GitHub Desktop.
perf_snippet_21
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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