About MVVM with new architecture components, I\'ve a question, how should I implement if my app needs to display for example a Dialog with 3 options from some action that ha
As everyone says ViewModel should not contain Context or reference to classes that contain Context. So it is not a good idea to show dialog from ViewModel.
You should show dialog from view, not from viewmodel.