epoxy icon indicating copy to clipboard operation
epoxy copied to clipboard

Epoxy is an Android library for building complex screens in a RecyclerView

Results 113 epoxy issues
Sort by recently updated
recently updated
newest added
trafficstars

Hey guys! I have two carousels in one recyclerView. Is it possible to set PagerSnapHelper for one and LinearSnapHelper for another? Or I can set SnapHelperFactory only globally like this:...

I want a summary model to be the sticky header so I added the following check. ``` override fun isStickyHeader(position: Int): Boolean { return adapter.getModelAtPosition(position).let { it is SummaryModel }...

Like, if I have UiState like this defined in my viewModel: ```kotlin data class UiState( val isLoading: Boolean = false, val hasError: Boolean = false, val errorMessage: String = "",...

Hello, I am using Epoxy Paging 3 in my project and I ran into the following problem: I need to load 10 items per page, but when the application is...

Is there a non hacky way out there, to render a carousel in a vertical list, that will have a default scrolling index? Thing of something like instagram, you scroll...

PagingDataEpoxyController is easy to set up and works great however I am facing some issues in displaying a model when the PagingData is empty. I have tried to override the...

I have an EpoxyRecyclerView with several horizontal Carousels. These carousels contain items of varying heights. The problem here is when I scroll the carousel the items that are longer are...

`Typed2EpoxyController` have no upper bound, so when using Kotlin, these types, while seemingly null-safe, are actually bounded by `Any?` by default. We should bound the types to be non-null: `Typed2EpoxyController`...

I have noticed that epoxy throws this exception when the model use the data class with kotlin 1.5.10 and 1.5.0 ``` java.lang.NullPointerException: Attempt to invoke virtual method 'int java.lang.String.hashCode()' on...

Needed [this](https://github.com/airbnb/epoxy/commit/98251a45a920c2216548525c895cab72bac3b6e5) in release. @elihart