aboutsummaryrefslogtreecommitdiff
path: root/library/src/main/kotlin/ca/allanwang/kau/utils/AnimHolder.kt
blob: 3db8b9cd124c44775d76dce3fc780a9189f5500f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package ca.allanwang.kau.utils

import ca.allanwang.kau.kotlin.lazyInterpolator

/**
 * Created by Allan Wang on 2017-06-28.
 *
 * Holder for a bunch of common animators/interpolators used throughout this library
 */
object AnimHolder {

    val fastOutSlowInInterpolator = lazyInterpolator(android.R.interpolator.fast_out_linear_in)
    val decelerateInterpolator = lazyInterpolator(android.R.interpolator.decelerate_cubic)

}