using System; using System.Threading; using Plugin.Settings; using Plugin.Settings.Abstractions; namespace Aurora.Services { public class SettingsService : BaseService { private Lazy _appSettings; public SettingsService() { } public ISettings AppSettings { get { if (_appSettings == null) { _appSettings = new Lazy(() => CrossSettings.Current, LazyThreadSafetyMode.PublicationOnly); } return _appSettings.Value; } set { _appSettings = new Lazy(() => value, LazyThreadSafetyMode.PublicationOnly); } } private string _usernameKey = "username"; public string Username { get { return AppSettings.GetValueOrDefault(_usernameKey, ""); } set { AppSettings.AddOrUpdateValue(_usernameKey, value); } } } }