Xamarin forms page not loaded properly for PopPageModel using navigation stack in FreshMVVM

123 Views Asked by At

We are using FreshMVVM in our application. We are using CoreMethods.PopPageModel based on NavigationStack count. While navigating the required page, that page not loaded properly. In xamarin forms ios it's working fine. For xamarin forms android not working fine. We are using below code,

for (int i = 0; i < 2; i++)
    await CoreMethods.PopPageModel(i == (CurrentPage.Navigation.NavigationStack.Count - 1), animate: false);

How to resolve this?

0

There are 0 best solutions below