Fixing null reference exception on Xamarin.Forms.Platform.Android\Renderers\SwipeViewRenderer.cs (#10827)
This commit is contained in:
Родитель
d72cade973
Коммит
ae5bbc5123
|
@ -1318,6 +1318,9 @@ namespace Xamarin.Forms.Platform.Android
|
|||
|
||||
void UpdateIsOpen(bool isOpen)
|
||||
{
|
||||
if (Element == null)
|
||||
return;
|
||||
|
||||
((ISwipeViewController)Element).IsOpen = isOpen;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче