async protected Task NextModalStepAsync(JwtauthPage page) { _returnedFromModalPage = false; await Navigation.PushModalAsync(page); _returnedFromModalPage = true; }
async protected Task CancelModalStepsAsync() { _nextModalPage = null; await Navigation.PopModalAsync(false); }
async protected Task ScheduleNextModalStepAsync(JwtauthPage page) { _nextModalPage = page; await Navigation.PopModalAsync(false); }