Curently, I'm using data binding for two cases:
- to access
viewsin fragment - to subscribe data with
view modelin layout.
When I compare with view binding, I see both methods fine (view binding better to access views, data binding to bind data),
so which pattern should be preferred for MVVM?
Should I move to view binding and handle ViewModel-layout connections in fragment only?