mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 10:37:11 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			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,
 | |
| );
 |