Clear MainPage renderer if exists after reload (#1200)

This commit is contained in:
kingces95 2017-10-18 04:51:17 -10:00 коммит произвёл Rui Marinho
Родитель a0a2cdc0a8
Коммит afbdf4dbf1
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -126,6 +126,13 @@ namespace Xamarin.Forms.Platform.Android
application.PropertyChanged += AppOnPropertyChanged;
var iver = Platform.GetRenderer(application.MainPage);
if (iver != null)
{
iver.Dispose();
application.MainPage.ClearValue(Platform.RendererProperty);
}
SetMainPage();
}