afterTextChanges

Create a InitialValueFlow of after text change events on the TextView instance.

Note: Created flow keeps a strong reference to the TextView instance until the coroutine that launched the flow collector is cancelled.

Example of usage:

textView.afterTextChanges()
.onEach { event ->
// handle text view after text change event
}
.launchIn(uiScope)