mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 09:15:35 +03:00
Transfer repository from Gitlab
This commit is contained in:
18
mobile/lib/shared/services/local_storage.service.dart
Normal file
18
mobile/lib/shared/services/local_storage.service.dart
Normal file
@@ -0,0 +1,18 @@
|
||||
import 'package:hive/hive.dart';
|
||||
import 'package:immich_mobile/constants/hive_box.dart';
|
||||
|
||||
class LocalStorageService {
|
||||
late Box _box;
|
||||
|
||||
LocalStorageService() {
|
||||
_box = Hive.box(userInfoBox);
|
||||
}
|
||||
|
||||
T get<T>(String key) {
|
||||
return _box.get(key);
|
||||
}
|
||||
|
||||
put<T>(String key, T value) {
|
||||
return _box.put(key, value);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user