agrosner
08/19/2022, 4:03 PMval scrollState = rememberLazyListState()
modifier = Modifier.draggable(
orientation = Orientation.Vertical,
state = rememberDraggableState { delta ->
coroutineScope.launch {
scrollState.scrollBy(-delta)
}
}
),
so at least you can get down on scroll events. though yet to try hacking around the mouse not scrolling issue.