I have a Xamarin.Forms Pages and than open a Native page Page1->Page2->Page3->NativePage
and if i do
Frame rootFrame = Window.Current.Content as Frame;
if (rootFrame.CanGoBack)
rootFrame.GoBack();
i end up on Page1
any ideas how to convince the navigation to work normaly and go to Page3?