This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 : |
OlderNewer