Calvin Liang

Results 73 comments of Calvin Liang

> > > Reorderable/reorderable/src/commonMain/kotlin/sh/calvin/reorderable/ReorderableLazyCollection.kt > > > > this seems like a seperate issue. is this not doable with the existing api of `ReorderableItem(... ,enabled = false)`? > > For...

Hmm can't you just use `onDragStart`? It should be called right after a long press `longPressDraggable` uses `detectDragGesturesAfterLongPress` which doesn't have a separate `onLongPress` so I don't know how I...

`v2.5.0` has `dragGestureDetector` in `Modifier.draggableHandle` now. It should be possible to add custom gestures with it.

I'll look into this tomorrow. Any chance you can a screen recording of a sample project that has the problem you're running into? Not sure if I understand exactly what's...

I can't think of a good way to do this :(

Hmm that's weird, haven't seen this before. Any chance you can share the code? (with all the sensitive/irrelevant stuff removed of course, just need the list part) That would really...

I suspect that this may have something to do with ```kotlin var files by remember { mutableStateOf(directoryWatcher!!.files) } ``` Wrapping `directoryWatcher!!.files` in `mutableStateOf` may be causing Compose not to recompose...

any idea how to persist a composition even after the item scrolls off screen? it's been a problem from the beginning and the source of a lot of issues and...