From 60c18602dabda027c06f3e9b51ce6dae08936597 Mon Sep 17 00:00:00 2001 From: Atharva Date: Wed, 24 Jul 2024 03:19:04 +0530 Subject: [PATCH] minor ui change --- lib/new_ui/screens/attendance_screen/attendance_screen.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/new_ui/screens/attendance_screen/attendance_screen.dart b/lib/new_ui/screens/attendance_screen/attendance_screen.dart index 2110c15..0bb8519 100644 --- a/lib/new_ui/screens/attendance_screen/attendance_screen.dart +++ b/lib/new_ui/screens/attendance_screen/attendance_screen.dart @@ -341,7 +341,7 @@ class _AttendanceScreenState extends State { 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)), @@ -353,7 +353,7 @@ class _AttendanceScreenState extends State { 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)),