import 'package:flutter/material.dart'; class StatsScreen extends StatelessWidget { const StatsScreen({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Statistics'), ), body: const Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Icon(Icons.insights, size: 64, color: Colors.grey), SizedBox(height: 16), Text( 'Your stats will appear here', style: TextStyle(fontSize: 18, color: Colors.grey), ), ], ), ), ); } }