I've recently completed an Android app in Xamarin and am now working through creating an iOS application. I'm not sure if I've missed something extremely basic here, but I'm having trouble understanding how you transition from one screen to another.
In the MultiScreen demo app, this is achieved with a navigation controller and segue. I also saw the code sample which shows you to do this manually, calling the:
NavigationController.PushViewController(YourView, true);
And this works fine assuming you want to be able to navigate between the two.
The first thing my users see is a login screen. If the user successfully logs in, I want to send them to a home screen. As you can imagine, it makes no sense that you would 'go back' to the login page. I've seen it is possible to hide the navigation bar, but I just wanted to check first... Is there an alternative way to transition to the home page without using a NavigationController ?
Thank you in advance.