Skip to content

Commit

Permalink
Merge pull request #223 from atharva-khewle/main
Browse files Browse the repository at this point in the history
ui
  • Loading branch information
atharva-khewle authored Jul 23, 2024
2 parents 07ae301 + 7cfc82f commit 0c411b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/new_ui/screens/attendance_screen/attendance_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ class _AttendanceScreenState extends State<AttendanceScreen> {
await AttendanceService.markPresent(attendanceList, index);
/*_fetchAndSetAttendance();*/
},
child: const Text('Present', style: TextStyle(color: Colors.white, fontSize: 12),),
child: const Text('Present', style: TextStyle(color: Colors.white, fontSize: 15),),
style: ElevatedButton.styleFrom(
backgroundColor: commonbgL3ightblack,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(5)),
Expand All @@ -353,7 +353,7 @@ class _AttendanceScreenState extends State<AttendanceScreen> {
await AttendanceService.markAbsent(attendanceList, index);
/*_fetchAndSetAttendance();*/
},
child: const Text('Absent', style: TextStyle(color: Colors.white, fontSize: 12),),
child: const Text('Absent', style: TextStyle(color: Colors.white, fontSize: 15),),
style: ElevatedButton.styleFrom(
backgroundColor: commonbgL3ightblack,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(5)),
Expand Down

0 comments on commit 0c411b4

Please sign in to comment.