What is better when need to listen/watch/observe value of edit text
- using RxBinding (RxTextView.textChanges)
- using doOnTextChanged ( reviewEditText.doOnTextChanged { _, _, _, _ -> checkButtonState() })
I have a screen with several EditTextViews and want to disable/enable a button based on content of these Views, so what is more efficient to do this?