feat: Implement home screen with navigation and update login flow

This commit is contained in:
2025-08-20 23:08:08 +02:00
parent 592e79a375
commit 7792023b22
7 changed files with 71 additions and 19 deletions

View File

@@ -5,6 +5,7 @@ import 'screens/login_screen.dart';
import 'screens/profile_screen.dart';
import 'screens/schedule_screen.dart';
import 'screens/splash_screen.dart';
import 'screens/home_screen.dart';
import 'services/auth_service.dart';
void main() {
@@ -26,6 +27,7 @@ class MyApp extends StatelessWidget {
routes: {
'/splash': (context) => SplashScreen(),
'/': (context) => LoginScreen(),
'/home': (context) => HomeScreen(),
'/profile': (context) => ProfileScreen(),
'/schedule': (context) => ScheduleScreen(),
},