I am using Prism for UWP and I've base classed my App from PrismUnityApplication. I've overridden OnLaunchApplicationAsync and I am trying to call,
NavigationService.Navigate("HighlightsView", null);
When called, the program throws an exception,
{"The page name HighlightsView does not have an associated type in namespace Panda.UWP.Views\r\nParameter name: pageToken"}
I do have a folder named Views and I do have a view named HighlightsView under the namespace, Panda.UWP.Views.
Is there a naming convention to be followed here? Because if I rename my view from HighlightsView to HighlightsPage, then everything seems to be working just fine!