private async Task LoadAndSaveLocalSettings()
        {
            var localSettings = _localSettingsService.LoadLocalSettings();
            await SecureStorage.SetAsync("weatherApiBaseUrl", localSettings.WeatherApiBaseUrl);

            await SecureStorage.SetAsync("weatherApiKey", localSettings.WeatherApiKey);
        }