I have a strange click through issue when clicks a...
# compose
t
I have a strange click through issue when clicks are sent to the view under the visible one see code in thread. Are there known issue like that?
Copy code
Column {
	Spacer(modifier = Modifier.statusBarsHeight())
	Row(
		modifier = Modifier
			.height(48.dp)
			.fillMaxWidth()
			.clickable {
			   //
			}
	) {}
	LazyColumn(state = lazyListState, contentPadding = PaddingValues(vertical = 8.dp)) {
		items(xxx, key = {                yyy            }) {
			//
		}
		item {
			Spacer(modifier = Modifier.navigationBarsPadding())
		}
	}
}
Clicks on the half bottom part of the Row are sent to the lazylist items if it's scrolled. Adding a zIndex(1f) to the row modifier fix this but this does not sounds right.
z
Sounds a lot like this
t
Yes completely I did not find that one as did not though of swallow term.
Unfortunately, compose issue tracker have some triaging issue, either it's defaulted to the wrong guy as it happen on other trackers or he can't follow the amount of issues created.
z
Im hopeful that it will get solved eventually, seems like a pretty serious issue that might point to some larger underlying issue - I dont understand the inner workings of compose and how its built all too well, but it feels like the layouts are laid out over/under each other, whereas they should be laid out next to each other .. similar to a linearlayout, etc. Fingers crossed! 🤞🏽