PushPageModel not working on simple button in Xamarin

74 Views Asked by At

Using the function below does not move the page to the desired view. The function is called from a Button Command

WeeklyJourneysCommand = new AsyncCommand(WeeklyJourneysAsync);

Which calls

 async Task WeeklyJourneysAsync()
        {
           await base.CoreMethods.PushPageModel<EventListPageModel>(App.CurrentWeekNumber);
        }
1

There are 1 best solutions below

0
amun1000 On

Sorted - multiple master detail pages causing issues