Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

detects wrong taps on zoomable LazyList when scrolling #207

Open
mrnektom opened this issue Apr 24, 2024 · 0 comments
Open

detects wrong taps on zoomable LazyList when scrolling #207

mrnektom opened this issue Apr 24, 2024 · 0 comments

Comments

@mrnektom
Copy link

@Composable
fun ZoomableLazyColumn() {
    LazyColumn(
        modifier = Modifier
            .fillMaxSize()
            .zoomable(
                rememberZoomState(),
                onTap = {
                    Log.d(TAG, "Tap")
                }
            )
    ) {
        items(50) {
            Box(
                modifier = Modifier
                    .fillMaxWidth()
                    .height(100.dp)
            )
        }
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant