Files
finger_print_app/lib/screens/attendence_screen.dart
2025-11-30 16:19:30 +03:00

24 lines
591 B
Dart

// lib/screens/attendance_screen.dart
import 'package:flutter/material.dart';
class AttendanceScreen extends StatelessWidget {
const AttendanceScreen({super.key});
@override
Widget build(BuildContext context) {
return Container(
// This is where your attendance content will go
// For now, it's just a placeholder
child: const Center(
child: Text(
'Attendance Content',
style: TextStyle(
color: Colors.white,
fontSize: 24,
fontWeight: FontWeight.bold,
),
),
),
);
}
}