import 'package:flutter/material.dart'; import '../../constants/app_colors.dart'; class NotificationsScreen extends StatelessWidget { const NotificationsScreen({super.key}); @override Widget build(BuildContext context) { return Scaffold( backgroundColor: const Color(0xFF0B0F14), appBar: AppBar( backgroundColor: const Color(0xFF0B0F14), foregroundColor: Colors.white, title: const Text('Notifications'), automaticallyImplyLeading: false, ), body: const Center( child: Padding( padding: EdgeInsets.all(24), child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Icon( Icons.notifications_outlined, size: 64, color: AppColors.primary, ), SizedBox(height: 24), Text( 'Notifications', style: TextStyle( fontSize: 28, color: Colors.white, fontWeight: FontWeight.bold, ), ), SizedBox(height: 16), Text( 'Stay updated with your activity', style: TextStyle(fontSize: 16, color: Color(0xFFB6C2D2)), textAlign: TextAlign.center, ), ], ), ), ), ); } }