[UITests] fix dismiss page crash (#4251)

This commit is contained in:
Shane Neuville 2018-11-01 10:38:16 -06:00 коммит произвёл GitHub
Родитель e6d060087e
Коммит bb58503c1a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -48,7 +48,13 @@ namespace Xamarin.Forms.Controls
var modalDismissButton = new Button () {
Text = "Dismiss Page",
Command = new Command (async () => await Navigation.PopModalAsync ())
Command = new Command (async () =>
{
if (_picker.SelectedIndex == 0)
await Navigation.PopAsync();
else
_picker.SelectedIndex--;
})
};
Layout.Children.Add (modalDismissButton);