agrosner
val scrollState = rememberLazyListState() modifier = Modifier.draggable( orientation = Orientation.Vertical, state = rememberDraggableState { delta -> coroutineScope.launch { scrollState.scrollBy(-delta) } } ),
A modern programming language that makes developers happier.