mirror of
https://github.com/immich-app/immich.git
synced 2026-04-25 10:39:50 -04:00
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);
|