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