import 'package:agrilink_vocpro/features/home/view/home_screen.dart'; import 'package:flutter/material.dart'; class DashboardProvider extends ChangeNotifier { int _currentIndex = 0; int get currentIndex => _currentIndex; final date = DateTime.now(); void setCurrentIndex(int index) { _currentIndex = index; notifyListeners(); } final List _screens = [ const HomeScreen(), const Center(child: Text('Control')), const Center(child: Text('Plants')), const Center(child: Text('Settings')), ]; List get screens => _screens; }