aboutsummaryrefslogtreecommitdiff
path: root/about/src/main/kotlin/ca/allanwang/kau/about/AboutBinder.kt
blob: c99f7c2a55cf2edfd1d6eb1ae4e95f21be49774e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package ca.allanwang.kau.about

import android.content.Context
import ca.allanwang.kau.utils.startActivity
import ca.allanwang.kau.utils.withSceneTransitionAnimation

/**
 * Created by Allan Wang on 2017-07-22.
 */

/**
 * About activity launcher
 */
inline fun <reified T : AboutActivityBase> Context.kauLaunchAbout() =
        startActivity<T>(bundleBuilder = {
            withSceneTransitionAnimation(this@kauLaunchAbout)
        })