It seems Modifier.verticalScroll and LazyColumn co...
# compose
b
It seems Modifier.verticalScroll and LazyColumn contents are clickable even when scrolled off-screen. It's as if the contents are clipped only visually, but still on the screen (like View.INVISIBLE). Guessing that's a bug?
Visual example. Each of these cards are clickable() inside a LazyColumn. But if I try to click the back arrow at the top, or even the word "Entertainment", it clicks on the card underneath!
The same thing happens if I use verticalScroll modifier. The content is visually clipped, but I can still click it when it's under the header 😕
👍🏽 1