* Use custom QueryPagingSource - Adds placeholder to make the list jump around less - Fixes issue where SQLDelight QueryPagingSource would throw IndexOutOfBounds * Review Changes
10 lines
232 B
Kotlin
10 lines
232 B
Kotlin
package eu.kanade.presentation.util
|
|
|
|
import androidx.compose.ui.graphics.Color
|
|
|
|
val shimmerGradient = listOf(
|
|
Color.LightGray.copy(alpha = 0.8f),
|
|
Color.LightGray.copy(alpha = 0.2f),
|
|
Color.LightGray.copy(alpha = 0.8f),
|
|
)
|