mirror of
https://github.com/immich-app/immich.git
synced 2024-12-17 12:22:31 +02:00
5d1011b482
* feat(mobile): efficient asset sync
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,
|
|
);
|