mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
c1253663b7
* refactor(mobile): services and provider * providers
14 lines
222 B
Dart
14 lines
222 B
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
|
|
enum TabEnum {
|
|
home,
|
|
search,
|
|
sharing,
|
|
library,
|
|
}
|
|
|
|
/// Provides the currently active tab
|
|
final tabProvider = StateProvider<TabEnum>(
|
|
(ref) => TabEnum.home,
|
|
);
|