aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/ca/allanwang/kau/swipe/SwipeListener.kt
blob: 71771a8a216848380fcc727b3ba156510dd69348 (plain)
1
2
3
4
5
6
7
8
9
10
package ca.allanwang.kau.swipe

interface SwipeListener {
    fun onScroll(percent: Float, px: Int, edgeFlag: Int)
    fun onEdgeTouch()
    /**
     * Invoke when scroll percent over the threshold for the first time
     */
    fun onScrollToClose(edgeFlag: Int)
}