import 'package:flutter/material.dart'; import '../shared/primary_app_bar.dart'; /// Favourites screen displaying user's favorite recipes. class FavouritesScreen extends StatelessWidget { const FavouritesScreen({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: PrimaryAppBar(title: 'Favourites'), body: const Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Icon( Icons.favorite_outline, size: 64, color: Colors.grey, ), SizedBox(height: 16), Text( 'Favourites Screen', style: TextStyle( fontSize: 24, fontWeight: FontWeight.bold, color: Colors.grey, ), ), SizedBox(height: 8), Text( 'Your favorite recipes will appear here', style: TextStyle( fontSize: 16, color: Colors.grey, ), ), ], ), ), ); } }