I'm building an app using Xamarin.Forms, and i have a "gallery page". This page consists of many images that are being loaded into the page.
The loading of the images takes quite a while, and when navigating to another page, and afterwards coming back using Navigation.PopAsync and Navigation.PushAsync the entire page needs to be rebuild again (photo's are being loaded all over again).
I've tried caching the page (so not doing Navigation.PushAsync(new GalleryPage()) all the time, but keeping it in a variable, but this makes no difference.
Does anyone know how to cache an entire page, so it does not need to be loaded all over again?
Thank you