mirror of
https://github.com/SimpleMobileTools/Simple-Keyboard.git
synced 2025-04-13 01:42:34 +02:00
13 lines
419 B
Kotlin
13 lines
419 B
Kotlin
package com.simplemobiletools.keyboard.extensions
|
|
|
|
import androidx.recyclerview.widget.RecyclerView
|
|
|
|
fun RecyclerView.onScroll(scroll: (Int) -> Unit) {
|
|
addOnScrollListener(object : RecyclerView.OnScrollListener() {
|
|
override fun onScrolled(recyclerView: RecyclerView, dx: Int, dy: Int) {
|
|
super.onScrolled(recyclerView, dx, dy)
|
|
scroll(computeVerticalScrollOffset())
|
|
}
|
|
})
|
|
}
|