Home
last modified time | relevance | path

Searched refs:isPlacementAnimationInProgress (Results 1 – 2 of 2) sorted by relevance

/compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/lazy/layout/
DLazyLayoutItemAnimation.kt57 var isPlacementAnimationInProgress by mutableStateOf(false) variable in androidx.compose.foundation.lazy.layout.LazyLayoutItemAnimation
104 if (isPlacementAnimationInProgress) { in cancelPlacementAnimation()
108 isPlacementAnimationInProgress = false in cancelPlacementAnimation()
124 isPlacementAnimationInProgress = true in animatePlacementDelta()
154 isPlacementAnimationInProgress = false in animatePlacementDelta()
216 if (isPlacementAnimationInProgress) { in release()
217 isPlacementAnimationInProgress = false in release()
DLazyLayoutItemAnimator.kt264 val inProgress = info.animations.any { it?.isPlacementAnimationInProgress == true } in <lambda>()