Reputation: 367
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?
Upvotes: 0
Views: 121