Files
immich/mobile/lib/providers/tab.provider.dart
shenlong-tanwen 7a923659d1 chore: riverpod v2 to v3
# Conflicts:
#	mobile/lib/presentation/widgets/asset_viewer/asset_page.widget.dart
2026-05-04 21:28:55 +07:00

7 lines
199 B
Dart

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