[GTK] Fixed problem disposing childs navigating back (#3116) Fixes #2987

* Fixed problem disposing childs navigating back

* Fixed text format
This commit is contained in:
Javier Suárez Ruiz 2018-08-08 11:04:22 +02:00 коммит произвёл Rui Marinho
Родитель b25ca40edb
Коммит 9ffa2f12c7
1 изменённых файлов: 24 добавлений и 16 удалений

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

@ -1,5 +1,6 @@
using Gtk;
using System;
using System.Collections.ObjectModel;
using System.ComponentModel;
using Xamarin.Forms.Internals;
using Xamarin.Forms.Platform.GTK.Extensions;
@ -90,6 +91,13 @@ namespace Xamarin.Forms.Platform.GTK.Renderers
{
if (_appeared)
{
ReadOnlyCollection<Element> children = ((IElementController)Element).LogicalChildren;
for (var i = 0; i < children.Count; i++)
{
var visualChild = children[i] as VisualElement;
visualChild?.Cleanup();
}
Page.SendDisappearing();
}