import 'package:flutter/material.dart'; /// Placeholder for the task creation/edit form. /// Will be fully implemented in Plan 03. class TaskFormScreen extends StatelessWidget { const TaskFormScreen({super.key, this.roomId, this.taskId}); final int? roomId; final int? taskId; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: const Text('Aufgabe')), body: const Center(child: Text('Demnächst verfügbar')), ); } }