All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.me.saket.telephoto.zoomable.internal.animationSpecs.kt Maven / Gradle / Ivy

There is a newer version: 0.12.1
Show 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