import 'package:flutter/material.dart'; import '../theme/app_theme.dart'; /// Orders tab — placeholder screen for future ordering features. class OrdersScreen extends StatelessWidget { const OrdersScreen({super.key}); @override Widget build(BuildContext context) { return Center( child: Padding( padding: const EdgeInsets.all(40), child: Column( mainAxisSize: MainAxisSize.min, children: [ Container( padding: const EdgeInsets.all(28), decoration: BoxDecoration( color: AppTheme.surfaceContainerLow, shape: BoxShape.circle, ), child: Icon( Icons.receipt_long_rounded, size: 56, color: AppTheme.secondary, ), ), const SizedBox(height: 28), Text( 'Orders', style: Theme.of(context).textTheme.headlineMedium, ), const SizedBox(height: 12), Text( 'Online ordering is coming soon!\nStay tuned for updates.', style: Theme.of(context).textTheme.bodyLarge?.copyWith( color: AppTheme.onSurfaceVariant, height: 1.6, ), textAlign: TextAlign.center, ), ], ), ), ); } }