import 'package:flutter/material.dart'; import '../../../core/widgets/app_drawer.dart'; import '../../../l10n/generated/app_localizations.dart'; /// Platzhalter für das Haushalt-Sharing (V2): Einladungen, Mitglieder, /// Sitter-Rolle. class HouseholdScreen extends StatelessWidget { const HouseholdScreen({super.key}); @override Widget build(BuildContext context) { final l10n = AppLocalizations.of(context); final theme = Theme.of(context); return Scaffold( appBar: AppBar(title: Text(l10n.householdTitle)), drawer: const AppDrawer(), body: Center( child: Padding( padding: const EdgeInsets.all(32), child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Icon(Icons.group, size: 72, color: theme.colorScheme.primary), const SizedBox(height: 16), Text( l10n.householdPlaceholder, style: theme.textTheme.bodyLarge, textAlign: TextAlign.center, ), const SizedBox(height: 16), Chip(label: Text(l10n.householdComingSoon)), ], ), ), ), ); } }