0
I’m developing an app using Xamarin.Forms, but I have a problem. Settings like color, company name, cover image and soon comes through a request for a call to web service whose return is a JSON, but every time I have to pull this information, which can affect the performance of my server. Is there any way to optimize this, such as a cache in which I request only once and whenever there is an update of the information?
You may be able to save to a localstorage. https://developer.xamarin.com/api/property/WebKit.WKWebsiteDataType.LocalStorage/
– Lucas Brogni