Leo Cacheux

Results 2 issues of Leo Cacheux

In the generated _writeToParcel_ method, null values are serialized as 1, non null as 0 : ```java if (getValue() == null) { dest.writeInt(1); } else { dest.writeInt(0); dest.writeString(getValue()); } ```...

I needed a way to handle long press events for items in a reorderable list with ```detectReorderAfterLongPress```, but using the ```combinedClickable``` modifier didn't worked in combination with the event management...