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

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