commonMain.me.saket.telephoto.zoomable.internal.animationSpecs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zoomable-desktop Show documentation
Show all versions of zoomable-desktop Show documentation
A Modifier for making anything zoomable.
The newest version!
package me.saket.telephoto.zoomable.internal
import androidx.compose.animation.core.SpringSpec
import androidx.compose.animation.core.spring
internal fun SpringSpec.copy(visibilityThreshold: T): SpringSpec {
return spring(
dampingRatio = this.dampingRatio,
stiffness = this.stiffness,
visibilityThreshold = visibilityThreshold,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy