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...