https://kotlinlang.org logo
Title
u

user

06/22/2022, 11:51 AM
Kotlin Paging 3 using Recycler View but List did not showing I used Paging 3 for my Recycler View that had to show some stories in the application. But while I used Paging 3, the lists did not show the item. Before I used Paging 3, the items had been showing including the details. StoriesResponseItem.kt @Entity(tableName = "story") data class StoriesResponseItem( @PrimaryKey @field:SerializedName("id") val id: String, @field:SerializedName("photoUrl") val photoUrl: String, @field:SerializedName("createdAt") val...