1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-01 16:41:59 +00:00
immich/mobile/lib/providers/tab.provider.dart
2024-10-10 15:44:14 +07:00

8 lines
212 B
Dart

import 'package:hooks_riverpod/hooks_riverpod.dart';
enum TabEnum { home, search, albums, library }
/// Provides the currently active tab
final tabProvider = StateProvider<TabEnum>(
(ref) => TabEnum.home,
);