Add check for null _root flex item (#3235)

This commit is contained in:
Francesco Bonacci 2018-07-25 14:34:22 +02:00 коммит произвёл Stephane Delcroix
Родитель 4edb715f6d
Коммит c5dd9f80d1
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -388,6 +388,9 @@ namespace Xamarin.Forms
protected override void LayoutChildren(double x, double y, double width, double height)
{
if (_root == null)
return;
Layout(x, y, width, height);
foreach (var child in Children) {
var frame = GetFlexItem(child).GetFrame();