mirror of
https://github.com/immich-app/immich.git
synced 2026-08-01 16:38:02 -07:00
* chore(mobile): Apply stricter linting rules for correctness * Added discarded_futures rule
16 lines
577 B
Dart
16 lines
577 B
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter_hooks/flutter_hooks.dart' hide Store;
|
|
import 'package:immich_mobile/entities/store.entity.dart';
|
|
import 'package:immich_mobile/services/app_settings.service.dart';
|
|
|
|
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, (_, __) => unawaited(Store.put(key.storeKey, notifier.value)));
|
|
|
|
return notifier;
|
|
}
|