import 'package:flutter/material.dart'; /// Placeholder for the task list screen within a room. /// Will be fully implemented in Plan 03. class TaskListScreen extends StatelessWidget { const TaskListScreen({super.key, required this.roomId}); final int roomId; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: const Text('Aufgaben')), body: const Center(child: Text('Demnächst verfügbar')), ); } }