mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 18:08:48 -07: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,
|
|
);
|