Info
Version: | 1.0.46 |
Author(s): | Piotr Boguslawski |
Last Update: | Monday, July 10, 2017 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/boguslawski-piotr/pbX/tree/master/Plugin.pbXSettings |
NuGet Url: | https://www.nuget.org/packages/Xam.Plugins.pbXSettings |
Install
Install-Package Xam.Plugins.pbXSettings
dotnet add package Xam.Plugins.pbXSettings
paket add Xam.Plugins.pbXSettings
Xam.Plugins.pbXSettings Download (Unzip the "nupkg" after downloading)
Dependencies
Tags
This plugin was inspired by another similar component written by James Montemagno, but I used a different approach to data handling and usage.
This plugin uses the native settings storage, which means all settings are persisted across app updates, saved natively, and on some platforms synchronized between devices.
- Android: SharedPreferences
- Apple: NSUserDefaults
- UWP: ApplicationDataContainer
- .NET / .NET Core 2: UserStore -> IsolatedStorageFile
The main plugin class (Plugin.pbXSettings.Settings) is fully ready for use in any binding systems because implements interface INotifyPropertyChanged. Can also be used as a regular collection, that is, it can be enumerated :)
The class uses .NET DataContractSerializer for saving and restoring keys and values, which means you can put and retrieve practically any valid .NET object as long as it meets the requirements of this serialization technolgy.