HomeCSharpPushAsync is not supported globally on Android, please use a Navigation Page.

PushAsync is not supported globally on Android, please use a Navigation Page.

When you navigate from one page top another in the android application using C# and Xamarin , you might receive the below error.

System.InvalidOperationException: PushAsync is not supported globally on Android, please use a NavigationPage.

image

For example , Navigation.PushAsync(new Page2()); will cause this issue in Xamarin Android project.

If this error is received , you could use the Navigation.PushModalAsync instead.

Leave a Reply

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...