mirror of
https://github.com/dz0ny/meshcore-sar.git
synced 2026-08-11 16:30:28 +00:00
33 lines
889 B
Dart
33 lines
889 B
Dart
import 'package:shared_preferences/shared_preferences.dart';
|
|
import 'profiles_feature_service.dart';
|
|
|
|
class RouteHashPreferences {
|
|
static const String _hashSizeKey = 'route_hash_size';
|
|
static const int defaultHashSize = 1;
|
|
|
|
static Future<int> getHashSize() async {
|
|
final prefs = await SharedPreferences.getInstance();
|
|
final value =
|
|
prefs.getInt(ProfileStorageScope.scopedKey(_hashSizeKey)) ??
|
|
defaultHashSize;
|
|
return _normalize(value);
|
|
}
|
|
|
|
static Future<void> setHashSize(int value) async {
|
|
final prefs = await SharedPreferences.getInstance();
|
|
await prefs.setInt(
|
|
ProfileStorageScope.scopedKey(_hashSizeKey),
|
|
_normalize(value),
|
|
);
|
|
}
|
|
|
|
static int normalizeSync(int value) => _normalize(value);
|
|
|
|
static int _normalize(int value) {
|
|
if (value < 1 || value > 3) {
|
|
return defaultHashSize;
|
|
}
|
|
return value;
|
|
}
|
|
}
|