Skip to content

Commit

Permalink
Merge pull request #332 from YujithIsura/main
Browse files Browse the repository at this point in the history
fixed action item not showing issue in attendance dashboard date picker
  • Loading branch information
YujithIsura authored Jan 21, 2024
2 parents 960d4f9 + 680cfca commit 868d23b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,20 @@ class _AttendanceDashboardScreenState extends State<AttendanceDashboardScreen> {
flex: 3,
child: Column(
children: [
Text("Daily Attendance Trends",
style:
Theme.of(context).textTheme.headlineMedium),
LineChartWidget(_fetchedLineChartData),
Text(
"Date Range: " +
this.formattedStartDate +
" - " +
this.formattedEndDate,
style: TextStyle(
fontSize: 14,
),
),
SizedBox(height: defaultPadding),
AttendanceMissedBySecurity(
fetchedAttendanceData: _fetchedAttendanceData),
],
Expand Down
6 changes: 5 additions & 1 deletion campus/frontend/lib/themes/gallery_theme_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ class GalleryThemeData {
elevation: 0,
iconTheme: IconThemeData(color: colorScheme.primary),
),
iconTheme: IconThemeData(color: colorScheme.onPrimary),
iconTheme: IconThemeData(
color: Color.fromARGB(255, 234, 80, 9), // Your desired color
size: 20, // Adjust the size as needed
opacity: 1.0, // You can adjust the opacity if needed
),
canvasColor: colorScheme.background,
scaffoldBackgroundColor: colorScheme.background,
highlightColor: Colors.transparent,
Expand Down

0 comments on commit 868d23b

Please sign in to comment.