mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.6 KiB
89 lines
2.6 KiB
// Copyright 2018 The Flutter team. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'dart:async';
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
import 'package:veggieseasons/data/veggie.dart';
|
|
|
|
/// A model class that mirrors the options in [SettingsScreen] and stores data
|
|
/// in shared preferences.
|
|
class Preferences extends ChangeNotifier {
|
|
// Keys to use with shared preferences.
|
|
static const _caloriesKey = 'calories';
|
|
static const _preferredCategoriesKey = 'preferredCategories';
|
|
|
|
// Indicates whether a call to [_loadFromSharedPrefs] is in progress;
|
|
Future<void>? _loading;
|
|
|
|
int _desiredCalories = 2000;
|
|
|
|
final Set<VeggieCategory> _preferredCategories = <VeggieCategory>{};
|
|
|
|
Future<int> get desiredCalories async {
|
|
await _loading;
|
|
return _desiredCalories;
|
|
}
|
|
|
|
Future<Set<VeggieCategory>> get preferredCategories async {
|
|
await _loading;
|
|
return Set.from(_preferredCategories);
|
|
}
|
|
|
|
Future<void> addPreferredCategory(VeggieCategory category) async {
|
|
_preferredCategories.add(category);
|
|
await _saveToSharedPrefs();
|
|
notifyListeners();
|
|
}
|
|
|
|
Future<void> removePreferredCategory(VeggieCategory category) async {
|
|
_preferredCategories.remove(category);
|
|
await _saveToSharedPrefs();
|
|
notifyListeners();
|
|
}
|
|
|
|
Future<void> setDesiredCalories(int calories) async {
|
|
_desiredCalories = calories;
|
|
await _saveToSharedPrefs();
|
|
notifyListeners();
|
|
}
|
|
|
|
Future<void> restoreDefaults() async {
|
|
final prefs = await SharedPreferences.getInstance();
|
|
await prefs.clear();
|
|
load();
|
|
}
|
|
|
|
void load() {
|
|
_loading = _loadFromSharedPrefs();
|
|
}
|
|
|
|
Future<void> _saveToSharedPrefs() async {
|
|
final prefs = await SharedPreferences.getInstance();
|
|
await prefs.setInt(_caloriesKey, _desiredCalories);
|
|
|
|
// Store preferred categories as a comma-separated string containing their
|
|
// indices.
|
|
await prefs.setString(_preferredCategoriesKey,
|
|
_preferredCategories.map((c) => c.index.toString()).join(','));
|
|
}
|
|
|
|
Future<void> _loadFromSharedPrefs() async {
|
|
final prefs = await SharedPreferences.getInstance();
|
|
_desiredCalories = prefs.getInt(_caloriesKey) ?? 2000;
|
|
_preferredCategories.clear();
|
|
final names = prefs.getString(_preferredCategoriesKey);
|
|
|
|
if (names != null && names.isNotEmpty) {
|
|
for (final name in names.split(',')) {
|
|
final index = int.tryParse(name) ?? -1;
|
|
_preferredCategories.add(VeggieCategory.values[index]);
|
|
}
|
|
}
|
|
|
|
notifyListeners();
|
|
}
|
|
}
|