When navigating back using the back button on the phone how can I refresh my ViewModel?
I'm using the back button on the phone but I believe its the same as calling NavigationService.GoBack(), which navigates to the previous page on the stack but the constructor is not called in my View or ViewModel.
You can hook in a base Page class the OnNavigatingTo event and call a method on your ViewModel. I don't have a VS with me but a pseudo-code would be:
in MyBasePAge : Page
you can do the same before leaving the page: