Skip to content

Instantly share code, notes, and snippets.

@thegarlynch
thegarlynch / DebounceCompose.kt
Created January 4, 2022 07:54
Debounce Action Compose.. So click won't triggered twice
import android.os.SystemClock
import androidx.compose.runtime.Composable
import androidx.compose.runtime.remember
/**
* Use this for debouncing action.
* This will returned a closure that will transformed the [action]
* so into debounced closure
*
* How to use :