I have using tabbed page in my application. I have two views with same viewmodel. By using fresh mvvm how to navigate one page to another page with same viewmodel. Please anyone give your valuable suggestion. My tabbed page code,
var tabbedNavigation = new FreshTabbedNavigationContainer();
tabbedNavigation.AddTab<MyViewPageModel>("View1", "View1.png", null);
var tabbedNavigation = new FreshTabbedNavigationContainer();
tabbedNavigation.AddTab<MyViewPageModel>("View2", "View2.png", null);
Application.Current.MainPage.Navigation.PushAsync(tabbedNavigation);