Cosmin Mihu
07/08/2026, 3:18 PMBox(modifier = Modifier.fillMaxSize()) {
SwingPanel(modifier = Modifier.fillMaxSize()) { /* map */ }
LazyColumn(modifier = Modifier.align(Alignment.TopStart)) {
items(routes) { ... }
}
}
The LazyColumn is visible on top of the map, but scroll does not work — mouse wheel events are captured by the SwingPanel underneath instead of being passed to the LazyColumn.
Is there a way to make a LazyColumn overlaid on top of a SwingPanel receive scroll/mouse wheel events correctly in Compose Desktop?wwalkingg
07/09/2026, 2:10 AM