mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 08:31:59 +00:00
8 lines
212 B
Dart
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,
|
|
);
|