2024-03-12 14:56:08 +00:00
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
import 'package:flutter_hooks/flutter_hooks.dart' hide Store;
|
2024-05-02 20:59:14 +00:00
|
|
|
import 'package:immich_mobile/services/app_settings.service.dart';
|
2024-05-01 02:36:40 +00:00
|
|
|
import 'package:immich_mobile/entities/store.entity.dart';
|
2024-03-12 14:56:08 +00:00
|
|
|
|
|
|
|
ValueNotifier<T> useAppSettingsState<T>(
|
|
|
|
AppSettingsEnum<T> key,
|
|
|
|
) {
|
|
|
|
final notifier = useState<T>(Store.get(key.storeKey, key.defaultValue));
|
|
|
|
|
|
|
|
// Listen to changes to the notifier and update app settings
|
|
|
|
useValueChanged(
|
|
|
|
notifier.value,
|
|
|
|
(_, __) => Store.put(key.storeKey, notifier.value),
|
|
|
|
);
|
|
|
|
|
|
|
|
return notifier;
|
|
|
|
}
|