Maf
Maf

Reputation: 355

Xamarin Forms Cross Platform Persistent Storage

I'm looking for a way to persist settings (KVPs) in a Xamarin Forms app. I'd like the settings to be easily bound and notified, very much like the SimpleSettings NuGet. The only problem with SimpleSettings is that it doesn't support UWP. Any ideas on a package that supports all.

Thanks

Upvotes: 0

Views: 285

Answers (1)

Timo Salomäki
Timo Salomäki

Reputation: 7189

Take a look at SettingsPlugin by James Montemagno. It's supported on all platform and uses the native setttings API's (NSUserDefaults, SharedPreferences, etc) in the background.

Here's the documentation on how to get started: https://jamesmontemagno.github.io/SettingsPlugin/

Upvotes: 1

Related Questions