james
10/23/2019, 2:22 AMdebounce
to debounce text changes from an Android EditText? I've done this previously using RxJava but RxAndroid did the hard work there with RxTextView.textChanges
.. I'm wondering how I can achieve this in the world of coroutines/flowgildor
10/23/2019, 2:24 AMdid the hard work there withIt provided by RxBinding, separate library that provide reactive extensions for Android Views. There is no such library for coroutines. But you can write own extension that does this usingRxTextView.textChanges
callbackFlow
builder functionMiSikora
10/23/2019, 6:24 AMFlow
library equivalent https://github.com/LDRAlighieri/Corbindjames
10/23/2019, 11:04 PM