import 'package:flutter/material.dart'; import 'package:go_router/go_router.dart'; import '../../../../core/theme/app_colors.dart'; class ProfilePage extends StatelessWidget { const ProfilePage({super.key}); @override Widget build(BuildContext context) { return PopScope( canPop: false, onPopInvoked: (didPop) { if (didPop) return; // Navigate back to dashboard instead of exiting app context.go('/student-dashboard'); }, child: Scaffold( backgroundColor: AppColors.background, appBar: AppBar( title: const Text('Profile'), backgroundColor: AppColors.surface, foregroundColor: AppColors.textPrimary, elevation: 0, ), body: const Center( child: Text( 'Profile Page - Coming Soon', style: TextStyle( fontSize: 24, fontWeight: FontWeight.bold, color: AppColors.textPrimary, ), ), ), ), ); } }