cycler icon indicating copy to clipboard operation
cycler copied to clipboard

Results 12 cycler issues
Sort by recently updated
recently updated
newest added

The library hides the implementation details of the `RecyclerView.Adapter` usage, making it impossible to assign the `RecyclerView.Adapter.StateRestorationPolicy` to the adapter. This means we can't resolve state restoration issues the policy...

Hi! The documentation states Cycler should have common features including sticky headers but I don't see it anywhere in the documentation. Am I missing something?

Hello, First off thanks for a really nice library! I've been working with this library over that last few days and it's been a breeze. I currently hit a problem...

When I started experimenting with this library I initially went with `Recycler.create()` which also created a layout manager for me. Then I decided that I don't want to manually call...

I am getting an IllegalStateException during the adapter notifications in the launched coroutine in the update block because I had injected the Dispatchers.main.immediate CoroutineDispatcher instead of the Dispatchers.main CoroutineDispatcher so...

To be run: - manually (ASAP) - in CI (when added #15 )

Allow for customization of the swipe item-type-wise. For that: - MutationExtensionSpec should have a RowSpec. - Particularities for each row should be stored in that object. - The swipe system...

Great library. I was just wondering why `RecylcerView.Adapter` and `DiffUtil` were used instead of `ListAdapter` and `DiffUtil.ItemCallback`? Was it to leverage coroutines for diffing operations?