Add check for null _root flex item (#3235)
This commit is contained in:
Родитель
4edb715f6d
Коммит
c5dd9f80d1
|
@ -388,6 +388,9 @@ namespace Xamarin.Forms
|
||||||
|
|
||||||
protected override void LayoutChildren(double x, double y, double width, double height)
|
protected override void LayoutChildren(double x, double y, double width, double height)
|
||||||
{
|
{
|
||||||
|
if (_root == null)
|
||||||
|
return;
|
||||||
|
|
||||||
Layout(x, y, width, height);
|
Layout(x, y, width, height);
|
||||||
foreach (var child in Children) {
|
foreach (var child in Children) {
|
||||||
var frame = GetFlexItem(child).GetFrame();
|
var frame = GetFlexItem(child).GetFrame();
|
||||||
|
|
Загрузка…
Ссылка в новой задаче