[Android] Null check previous page on TabbedPage

fixes #2035
This commit is contained in:
Samantha Houts 2018-03-30 11:19:54 -07:00
Родитель 4eb0fbdd89
Коммит 3170d859f0
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -74,7 +74,7 @@ namespace Xamarin.Forms.Platform.Android.AppCompat
{
if(_previousPage != Element.CurrentPage)
{
_previousPage.SendDisappearing();
_previousPage?.SendDisappearing();
_previousPage = Element.CurrentPage;
}
Element.CurrentPage = Element.Children[position];