Open optimalOreo opened 2 years ago
Hey there, thanks for the report! I highly doubt this is something on our side though...
You say
That different page used to be the one being pushed but it no longer is.
What changed in the meantime, do you know? Did you actually upgrade the Xamarin.Forms version?
Also, I see you're navigating through await Application.Current.MainPage.Navigation.PushAsync(modifiedContactUs);
which seems very complex, why not just await Navigation.PushAsync(modifiedContactUs);
?
Description
Xamarin application opens different Page upon NavigationPage.Pushaync().
NavigationPage.Asyncpush() is called within a ButtonClicked Method. That different page used to be the one being pushed but it no longer is.
ViewModel.cs
ModifiedContactUs.xaml
ModifiedContactUs.xaml.cs
ContactUs.xaml(The different Page)
ContactUs.xaml.cs (The different page)
Expected behavior
To navigate to a new Page named ModifiedContactUs
Actual behavior:
Navigates to page called named ContactUs
Basic Information:
Android Build:
-minimum level 21
-Target level 30
Devices:
-Huawei Y6 2019 (Physical device)
-API level 29
-Pixel 5 (Emulator)
-API level 30
-Samsung A21 (Physical device)
-API level 31
Notes
...
Workaround
...