import 'package:flutter/material.dart'; class SupportScreen extends StatelessWidget { const SupportScreen({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('Support', style: TextStyle(fontWeight: FontWeight.w600)), backgroundColor: Colors.white, foregroundColor: Color(0xFF6A4C93), elevation: 0, bottom: PreferredSize( preferredSize: Size.fromHeight(1), child: Container(height: 1, color: Colors.grey[200]), ), ), body: Container( decoration: BoxDecoration( gradient: LinearGradient( begin: Alignment.topCenter, end: Alignment.bottomCenter, colors: [ Color(0xFF32B0A5), Color(0xFF4600B9), ], ), ), child: SafeArea( child: Padding( padding: EdgeInsets.all(24), child: Column( children: [ Expanded( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Container( width: 120, height: 120, decoration: BoxDecoration( color: Colors.white.withOpacity(0.2), shape: BoxShape.circle, ), child: Icon( Icons.contact_support, size: 60, color: Colors.white, ), ), SizedBox(height: 40), Text( 'Need Help?', style: TextStyle( fontSize: 32, fontWeight: FontWeight.bold, color: Colors.white, ), ), SizedBox(height: 16), Text( 'We\'re here to help you!', style: TextStyle( fontSize: 18, color: Colors.white.withOpacity(0.9), ), ), SizedBox(height: 40), Container( padding: EdgeInsets.all(24), decoration: BoxDecoration( color: Colors.white.withOpacity(0.1), borderRadius: BorderRadius.circular(16), border: Border.all( color: Colors.white.withOpacity(0.3), ), ), child: Column( children: [ Icon( Icons.email_outlined, size: 40, color: Colors.white, ), SizedBox(height: 16), Text( 'Contact Support', style: TextStyle( fontSize: 20, fontWeight: FontWeight.w600, color: Colors.white, ), ), SizedBox(height: 12), Text( 'For account creation, password reset, or any other assistance, please contact ERP Management Group from your official company email address.', textAlign: TextAlign.center, style: TextStyle( fontSize: 16, color: Colors.white.withOpacity(0.9), height: 1.4, ), ), SizedBox(height: 20), Container( padding: EdgeInsets.symmetric(horizontal: 16, vertical: 8), decoration: BoxDecoration( color: Colors.white.withOpacity(0.2), borderRadius: BorderRadius.circular(8), ), child: Text( 'ERP Management Group', style: TextStyle( fontSize: 16, fontWeight: FontWeight.w600, color: Colors.white, ), ), ), ], ), ), ], ), ), Container( width: double.infinity, height: 56, child: ElevatedButton( onPressed: () => Navigator.of(context).pop(), style: ElevatedButton.styleFrom( backgroundColor: Colors.white, foregroundColor: Color(0xFF6A4C93), shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(12), ), elevation: 4, ), child: Text( 'Back to Settings', style: TextStyle( fontSize: 16, fontWeight: FontWeight.w600, ), ), ), ), ], ), ), ), ), ); } }