Fix crash when ItemsSource is set to null (#320)

This commit is contained in:
Jimmy Garrido 2016-08-25 11:05:18 -07:00 коммит произвёл Jason Smith
Родитель 417f7493d2
Коммит 5b85aafcd6
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -190,7 +190,8 @@ namespace Xamarin.Forms.Platform.Android.AppCompat
base.OnElementPropertyChanged(sender, e);
if (e.PropertyName == nameof(TabbedPage.CurrentPage))
ScrollToCurrentPage();
if(Element.CurrentPage != null)
ScrollToCurrentPage();
else if (e.PropertyName == NavigationPage.BarBackgroundColorProperty.PropertyName)
UpdateBarBackgroundColor();
else if (e.PropertyName == NavigationPage.BarTextColorProperty.PropertyName)