CPD-Gitty/trainerbox/lib/screens/calendar_tab.dart

17 lines
360 B
Dart

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),
),
),
);
}
}