1import 'package:flutter/material.dart'; 2 3import '../../constants/app_colors.dart'; 4 5class CreatePostScreen extends StatelessWidget { 6 const CreatePostScreen({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('Create Post'), 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( 25 Icons.add_circle_outline, 26 size: 64, 27 color: AppColors.primary, 28 ), 29 SizedBox(height: 24), 30 Text( 31 'Create Post', 32 style: TextStyle( 33 fontSize: 28, 34 color: Colors.white, 35 fontWeight: FontWeight.bold, 36 ), 37 ), 38 SizedBox(height: 16), 39 Text( 40 'Share your thoughts with the community', 41 style: TextStyle(fontSize: 16, color: Color(0xFFB6C2D2)), 42 textAlign: TextAlign.center, 43 ), 44 ], 45 ), 46 ), 47 ), 48 ); 49 } 50}