Null guard in `ShellFlyoutTemplatedContentRenderer.HeaderContainer.UpdateMinimumHeight` (#16573)

* Null guard

* Update ShellFlyoutTemplatedContentRenderer.cs

* Update ShellFlyoutTemplatedContentRenderer.cs

---------

Co-authored-by: Shane Neuville <shane94@hotmail.com>
This commit is contained in:
Nicholas Bauer 2024-09-05 13:11:16 -04:00 коммит произвёл GitHub
Родитель 84e46ba892
Коммит afc1f5c398
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -779,7 +779,7 @@ namespace Microsoft.Maui.Controls.Platform.Compatibility
frameLayoutView.SetMinimumHeight(minHeight);
}
if (PlatformView.MinimumHeight != minHeight)
if (PlatformView is not null && PlatformView.MinimumHeight != minHeight)
{
PlatformView.SetMinimumHeight(minHeight);
}