We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e7c002 commit adff749Copy full SHA for adff749
data/src/main/java/com/whyranoid/data/post/PostPagingDataSource.kt
@@ -11,7 +11,8 @@ class PostPagingDataSource(
11
) : PagingSource<QuerySnapshot, Post>() {
12
13
override fun getRefreshKey(state: PagingState<QuerySnapshot, Post>): QuerySnapshot? {
14
- TODO("Not yet implemented")
+ // 새로 고침하면 데이터를 처음부터 로드
15
+ return null
16
}
17
18
override suspend fun load(params: LoadParams<QuerySnapshot>): LoadResult<QuerySnapshot, Post> {
0 commit comments