How can I save some user data locally on my Xamarin Forms app?
I have a simple Xamarin Forms app. I've now got a simple POCO object (eg. User
instance or an list of the most recent tweets or orders or whatever).
How can I store this object locally to the device? Lets imagine I serialize it as JSON.
Also, how secure is this data? Is it part of Keychains, etc? Auto backed up?
cheers!