IMvxNavigationService is an abstraction for the native navigation. Actually, it uses ViewModel to navigate, not from View to View. That means that we do not need to use platform-specific navigation, and MvvmCross will find the correct View to show.
By this method, we can navigate to a new ViewModel without specifying the View we want to navigate to. MvvmCross will find the right view which is associated with this ViewModel.
If we need to pass a param to the new ViewModel, there is another method to do this:
For some situation, we need to get the result of the target ViewModel and return it to the source ViewModel. For example, if we edit a Post, we should update the post in the PostListView after returning.