immich/mobile/lib/providers/tab.provider.dart

7 lines
207 B
Dart
Raw Normal View History

import 'package:hooks_riverpod/hooks_riverpod.dart';
2024-10-10 15:44:14 +07:00
enum TabEnum { home, search, albums, library }
/// Provides the currently active tab
final tabProvider = StateProvider<TabEnum>((ref) => TabEnum.home);