I'm developing a cross platform app and am using Prism Forms for some of the platforms and Prism WPF for Windows. I would like to use a common view model between the two, but I'm running into challenges with the base classes that the view models derive from, particularly with navigation support.
The samples I've seen for Prism Forms implement INavigationAware. It appears that Prism WPF supports this as well. However, I cannot reference both Prism WPF and Prism Forms from the same project for the obvious reason that there's ambiguous references for the types that are implemented in both.
I was able to abstract a basic navigation interface away for navigating between pages, but I'm not sure how to create a common implementation of INavigationAware that would work correctly both in the Prism Forms and Prism WPF project.
INavigationAwarein Prism 8 - Haukinger