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