hey guys I have a question regarding RxBindings & MVVM. I want to simply use RxBindings for listening for text changes in edit text, then verify it in proper use case (which is injected to viewmodel) and the problem is -> should I use live data to update UI (I'm using Architecture Components) or just emit result directly to activity/fragment via this observable? Or maybe the other way - pass those Observables via argument to ViewModel, then subscribe to it in ViewModel and emit changes via LiveData?