I have a Compose Desktop app with a map rendered v...
# compose-desktop
c
I have a Compose Desktop app with a map rendered via SwingPanel:
Copy code
Box(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?
w