when custom `View` is needed and it depends on dat...
# android
m
when custom
View
is needed and it depends on data from
ViewModel
is it better to observe
LiveData
directly form the
View
, hacky but can work, or expose method like
update(DATA)
to update
View
from the
Activity/Fragment
from where
LiveData
is being observed?
😶 1