![JAR search and dependency download from the Maven repository](/logo.png)
io.taig.android.widget.operation.animation.scala Maven / Gradle / Ivy
The newest version!
package io.taig.android.widget.operation
import android.support.v4.view.ViewPropertyAnimatorCompat
final class animation(animation: ViewPropertyAnimatorCompat) {
def popIn(): ViewPropertyAnimatorCompat = {
animation
.setDuration(150)
.rotation(0)
.scaleX(1)
.scaleY(1)
}
def popOut(): ViewPropertyAnimatorCompat = {
animation
.setDuration(150)
.rotation(-35)
.scaleX(0)
.scaleY(0)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy