<@U6Y33L3ME>, then what could be a good practice t...
# android-architecture
u
@edwardwongtl, then what could be a good practice to separate data flow that certain complex UI widgets receive? Suppose I have a panel with
RecyclerView
and it's not a
Fragment
, but there are specific data flow and business logic (specific usecases) that concern only this panel. This panel lives in
Activity
. So would you handle data flow using `Activity`'s
ViewModel
or would you create a specific
ViewModel
for handling this data flow (event if this
ViewModel
is, of course, provided within
Activity
) and then wrap it in some kind of manager?