| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
- // Helpers/Settings.cs This file was automatically added when you installed the Settings Plugin. If you are not using a PCL then comment this file back in to use it.
- using Plugin.Settings;
- using Plugin.Settings.Abstractions;
- namespace MyWeather.Droid.Helpers
- {
- /// <summary>
- /// This is the Settings static class that can be used in your Core solution or in any
- /// of your client applications. All settings are laid out the same exact way with getters
- /// and setters.
- /// </summary>
- public static class Settings
- {
- private static ISettings AppSettings
- {
- get
- {
- return CrossSettings.Current;
- }
- }
- #region Setting Constants
- private const string SettingsKey = "settings_key";
- private static readonly string SettingsDefault = string.Empty;
- #endregion
- public static string GeneralSettings
- {
- get
- {
- return AppSettings.GetValueOrDefault<string>(SettingsKey, SettingsDefault);
- }
- set
- {
- AppSettings.AddOrUpdateValue<string>(SettingsKey, value);
- }
- }
- }
- }*/
|