Exemplo n.º 1
0
        async protected Task NextModalStepAsync(JwtauthPage page)
        {
            _returnedFromModalPage = false;
            await Navigation.PushModalAsync(page);

            _returnedFromModalPage = true;
        }
Exemplo n.º 2
0
 async protected Task CancelModalStepsAsync()
 {
     _nextModalPage = null;
     await Navigation.PopModalAsync(false);
 }
Exemplo n.º 3
0
 async protected Task ScheduleNextModalStepAsync(JwtauthPage page)
 {
     _nextModalPage = page;
     await Navigation.PopModalAsync(false);
 }