mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
7a923659d1
# Conflicts: # mobile/lib/presentation/widgets/asset_viewer/asset_page.widget.dart
10 lines
275 B
Dart
10 lines
275 B
Dart
import 'package:hooks_riverpod/legacy.dart';
|
|
|
|
final secureStorageProvider = StateNotifierProvider<SecureStorageProvider, void>((ref) {
|
|
return SecureStorageProvider();
|
|
});
|
|
|
|
class SecureStorageProvider extends StateNotifier<void> {
|
|
SecureStorageProvider() : super(null);
|
|
}
|