Adding page to navigation stack:
Navigation.PushAsync(new SecondPage());
Popping page inside SecondPage:
Navigation.PopAsync();
but finalizer of SecondPage has not coused.
So, SecondPage occupied the memory. After some cycles pop/push unwanted instanced multiplying.
GC.Collect does not effect.
How to solve?