devhyeon0312
12/13/2022, 3:15 AMLazyRow(
modifier = modifier
.pointerInput(Unit) {
detectHorizontalDragGestures { change, dragAmount ->
coroutineScope.launch {
//Not Work : My Problem
}
}
}
) {
...
}
How can LazyRow detectHorizontalDragGestures?Chrimaeon
12/13/2022, 10:25 AM