mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 18:08:48 -07:00
911c35a7f1
* refactor(mobile): add Isar DB & Store class new Store: globally accessible key-value store like Hive (but based on Isar) replace first few places of Hive usage with the new Store * reduce max. DB size to prevent errors on older iOS devices --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
6 lines
206 B
Dart
6 lines
206 B
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:isar/isar.dart';
|
|
|
|
// overwritten in main.dart due to async loading
|
|
final dbProvider = Provider<Isar>((_) => throw UnimplementedError());
|