Daniel Stone
Daniel Stone
Turns out I was wrong, this issue still happens the first time I deploy the app to my device from android studio.
@evoactivity Unfortunately, I never found a fix. I suspect it could be a bug in Android. I just lived with it because it only happened on the first run. I'm...
I'm also seeing this, scroll reverser is reversing my trackpad even when I only have "reverse mouse" checked. For what it's worth, rebooting my mac fixed it for me, I'm...
Gotcha, thanks for the info. To tell you a bit more about my use case, we've got a bunch of integration tests, and 99% of them are able to run...
I'll add that this is pretty much a deal breaker feature for me. Right now, there's no way to organize any of the messages, they just get dumped in one...
In my case, I'm trying to use a base class to define optional fields that can be sent to a logging API. Each section of the app may use a...
Thanks for the explanation @pdvrieze, that makes sense about the base being abstract. That's an interesting idea of making the child class `ModuleLog` not serializable and the base class concrete,...
I've learned more information about this through testing. It appears that if the caller of `rememberReorderableLazyListState` recomposes when `onMove` is called, then the drag becomes unstable, even if nothing changed....
Ok, I've written a cache to work around this issue by caching the items while dragging. Example usage: ```kotlin val reorderCache = rememberReorderableLazyListCache(items = myItems) val reorderState = rememberReorderableLazyListState( onMove...
+1 I'm getting this error too.