Use custom QueryPagingSource (#7321)

* Use custom QueryPagingSource

- Adds placeholder to make the list jump around less
- Fixes issue where SQLDelight QueryPagingSource would throw IndexOutOfBounds

* Review Changes
This commit is contained in:
Andreas
2022-06-18 20:55:58 +02:00
committed by GitHub
parent 4c3af7bf36
commit 3fd9e021fa
9 changed files with 301 additions and 119 deletions

View File

@@ -14,7 +14,7 @@ import coil.compose.AsyncImage
import eu.kanade.presentation.util.rememberResourceBitmapPainter
import eu.kanade.tachiyomi.R
enum class MangaCover(private val ratio: Float) {
enum class MangaCover(val ratio: Float) {
Square(1f / 1f),
Book(2f / 3f);