Your commit message here

This commit is contained in:
2025-12-19 22:47:27 -06:00
parent 5d746d694e
commit 464692ce56
21 changed files with 3018 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import 'package:flutter_riverpod/flutter_riverpod.dart';
/// Provider to manage the bottom navigation index across the app
final navigationProvider = StateNotifierProvider<NavigationNotifier, int>((ref) {
return NavigationNotifier();
});
class NavigationNotifier extends StateNotifier<int> {
NavigationNotifier() : super(0);
void setIndex(int index) {
state = index;
}
}