package com.casic.smarttube.extensions import android.view.animation.LinearInterpolator import android.widget.ImageView fun ImageView.arrowAnimation(angle: Float) { val animation = this.animate() animation.duration = 300 animation.interpolator = LinearInterpolator() animation.rotation(angle) }