I am currently working on a project which will have a mixture of Xamarin.Forms and Native UI (this is mainly due to needing some Mapping functionality that I could not get working in Xamarin.Forms).
So, I have an native Android Activity which has an Options Menu containing a Login item. Clicking on this opens (unsurprisingly enough) the Login form. The Login form is in a Xamarin.Forms PCL project and loads/behaves as expected.
The problem is that once the user has logged in - how do I dismiss the login form. In Android is would be a simple this.Finish() but of course this is not possible in Xamarin.Forms. I've looked at the Navigation functionality but can't see how to wire this up to include native 'Forms' in the Navigation stack.
Any input appreciated.