```LazyRow( modifier = modifier .pointerInput(Unit) { detectHorizontalDragGe...
d
Copy code
LazyRow(
    modifier = modifier
        .pointerInput(Unit) {
            detectHorizontalDragGestures { change, dragAmount ->
                coroutineScope.launch {
                    //Not Work : My Problem
                }
            }
        }
) {
    ...
}
How can LazyRow detectHorizontalDragGestures?
c
Better ask in #compose