Can I use `flow` to handle the `clickable` callba...
# compose
c
Can I use
flow
to handle the
clickable
callback event? I need to debounce click. If one example will be grateful! 😄
j
CallbackFlow can be used to transform callbacks into flow
i
What kind of clicks are you trying to debounce?
c
@Ian Lake That is, when I click on the button multiple times, only one event is executed.
i
I know what a debounce is, I was asking what kind of events are important for you to debounce
c
I want to avoid repeating invoke some functions, such as I/O operations.