Tag Archives: Navigation
PushAsync is not supported globally on iOS, please use a NavigationPage
Ever ran into this problem? Easiest fix: Check your App.xaml.cs. Did you set your MainPage directly like MainPage = new StartPage(); ? If so, just change it to MainPage = new NavigationPage(new StartPage()); But it also appears where you cannot change it easily, e.g. if you are on a carousel page and want to open a new […]