Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/animation/scene/
H A DSwipeToScene.kt67 val velocityThreshold = with(LocalDensity.current) { 125.dp.toPx() } regex
85 velocityThreshold,
306 velocityThreshold: Float,
330 velocityThreshold,
386 velocityThreshold: Float,
396 return if (offset > 0f || velocity >= velocityThreshold) {
399 velocity <= -velocityThreshold ||
406 return if (offset < 0f || velocity <= -velocityThreshold) {
409 velocity >= velocityThreshold ||
/aosp14/frameworks/base/packages/CredentialManager/src/com/android/credentialmanager/common/material/
H A DSwipeable.kt197 internal var velocityThreshold by mutableStateOf(0f)
250 velocityThreshold = Float.POSITIVE_INFINITY
364 velocityThreshold = velocityThreshold
563 velocityThreshold: Dp = VelocityThreshold
575 properties["velocityThreshold"] = velocityThreshold
596 state.velocityThreshold = velocityThreshold.toPx()
754 velocityThreshold: Float
765 if (velocity >= velocityThreshold) {
773 if (velocity <= -velocityThreshold) {