navbar and setting bar is done
This commit is contained in:
24
lib/screens/attendence_screen.dart
Normal file
24
lib/screens/attendence_screen.dart
Normal file
@@ -0,0 +1,24 @@
|
||||
// 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,
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user