Main coves client
1import 'package:flutter/material.dart';
2
3import '../../constants/app_colors.dart';
4
5class SearchScreen extends StatelessWidget {
6 const SearchScreen({super.key});
7
8 @override
9 Widget build(BuildContext context) {
10 return Scaffold(
11 backgroundColor: const Color(0xFF0B0F14),
12 appBar: AppBar(
13 backgroundColor: const Color(0xFF0B0F14),
14 foregroundColor: Colors.white,
15 title: const Text('Search'),
16 automaticallyImplyLeading: false,
17 ),
18 body: const Center(
19 child: Padding(
20 padding: EdgeInsets.all(24),
21 child: Column(
22 mainAxisAlignment: MainAxisAlignment.center,
23 children: [
24 Icon(Icons.search, size: 64, color: AppColors.primary),
25 SizedBox(height: 24),
26 Text(
27 'Search',
28 style: TextStyle(
29 fontSize: 28,
30 color: Colors.white,
31 fontWeight: FontWeight.bold,
32 ),
33 ),
34 SizedBox(height: 16),
35 Text(
36 'Search communities and conversations',
37 style: TextStyle(fontSize: 16, color: Color(0xFFB6C2D2)),
38 textAlign: TextAlign.center,
39 ),
40 ],
41 ),
42 ),
43 ),
44 );
45 }
46}