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