I'm working on moving some WPF code to Windows Universal app and I'm using ReactiveUI.
From the ReactiveUI 6 migration guide:
Several Routing classes that never worked properly have been removed, and routing is Generally Discouraged from being used in anything other than a WPF app.
Does this General Discouragementâ„¢ mean I should not use RoutedViewHost in a universal app, or is this referring to something else?
This question about WP7 leads me to believe that it shouldn't be used.
This question about WP8 makes me think it should work. (Other than the reference to ReactiveUI.Mobile, which doesn't exist anymore.)
My universal app contains a single Page with a RoutedViewHost, (basically, the same setup as #2) but when I tap the hardware back button my app exits no matter how deep into the navigation stack I am. I'm not sure whether I've done something wrong, or if this just doesn't work for universal apps and I should convert to Frame / Page nav.