mirror of
https://github.com/immich-app/immich.git
synced 2025-11-11 09:06:53 -05:00
9 lines
448 B
Dart
9 lines
448 B
Dart
import 'package:flutter/widgets.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
|
|
final inLockedViewProvider = StateProvider<bool>((ref) => false);
|
|
final currentRouteNameProvider = StateProvider<String?>((ref) => null);
|
|
final previousRouteNameProvider = StateProvider<String?>((ref) => null);
|
|
final previousRouteDataProvider = StateProvider<RouteSettings?>((ref) => null);
|
|
final currentTabIndexProvider = StateProvider<int>((ref) => 0);
|