import 'package:flutter/material.dart'; class SocialScreen extends StatelessWidget { const SocialScreen({super.key}); @override Widget build(BuildContext context) { return Center( child: Text( 'Social', style: TextStyle( color: Colors.white, fontSize: 24, fontWeight: FontWeight.bold, ), ), ); } }