We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It's pretty straightfowards to implement correctly with back-pressure support out of the box using awaitOneClick(…) already in Views Coroutines:
awaitOneClick(…)
fun View.clicksFlow( disableAfterClick: Boolean = true, hideAfterClick: Boolean = false ): Flow<Unit> = flow { while (true) emit( awaitOneClick( disableAfterClick = disableAfterClick, hideAfterClick = hideAfterClick ) ) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It's pretty straightfowards to implement correctly with back-pressure support out of the box using
awaitOneClick(…)
already in Views Coroutines:The text was updated successfully, but these errors were encountered: