import 'package:flutter/material.dart'; class FavoritesTab extends StatelessWidget { const FavoritesTab({super.key}); @override Widget build(BuildContext context) { return SafeArea( child: Center( child: Text( 'Favoriten', style: TextStyle(fontSize: 32, fontWeight: FontWeight.bold), ), ), ); } }