Enabled Webuntis Holiday query Implemented Holiday view in Timetable Hide other special time regions like breaks when shown in holiday
This commit is contained in:
5
lib/extensions/dateTime.dart
Normal file
5
lib/extensions/dateTime.dart
Normal file
@ -0,0 +1,5 @@
|
||||
extension IsSameDay on DateTime {
|
||||
bool isSameDay(DateTime other) {
|
||||
return year == other.year && month == other.month && day == other.day;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user