I'm trying to open only one instance of a ViewModel
and it's bound View. However, when I call base.ShowViewModel<SecondViewModel>()
in my FirstViewModel
it always creates a new View
and does not update the one I created before.
I tried all LaunchMode
s for the Activity
but it does not hit OnNewIntent()
method in any case.