* Don't use animateItem's fade-in/fade-out in FastScrollLazyColumn * Move to extension function Avoid using animateItemPlacement name since it's shadowed by compose-bom's deprecated one (cherry picked from commit 913ff22132390a59a13c463645ce954c7cbc5c6b)
9 lines
291 B
Kotlin
9 lines
291 B
Kotlin
package eu.kanade.presentation.util
|
|
|
|
import androidx.compose.foundation.lazy.LazyItemScope
|
|
import androidx.compose.ui.Modifier
|
|
|
|
// https://issuetracker.google.com/352584409
|
|
context(LazyItemScope)
|
|
fun Modifier.animateItemFastScroll() = this.animateItem(fadeInSpec = null, fadeOutSpec = null)
|