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
7 lines
199 B
Dart
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);
|