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