import 'package:flutter/material.dart'; import '../../../../core/theme/app_colors.dart'; class TeacherDashboardPage extends StatelessWidget { const TeacherDashboardPage({super.key}); @override Widget build(BuildContext context) { return Scaffold( backgroundColor: AppColors.background, appBar: AppBar( title: const Text('Teacher Dashboard'), backgroundColor: AppColors.surface, foregroundColor: AppColors.textPrimary, elevation: 0, ), body: const Center( child: Text( 'Teacher Dashboard - Coming Soon', style: TextStyle( fontSize: 24, fontWeight: FontWeight.bold, color: AppColors.textPrimary, ), ), ), ); } }