implemented RMV commute integration in the timetable, added Nominatim geocoding for home station lookup, created CommuteCubit for daily trip management with TTL caching, and introduced specialized timetable tiles, detail sheets, and settings for transit connections and walking buffers

This commit is contained in:
2026-05-20 22:50:57 +02:00
parent 067012cc84
commit 46d6b3410e
20 changed files with 1513 additions and 20 deletions
@@ -3,6 +3,7 @@ import 'package:syncfusion_flutter_calendar/calendar.dart';
import '../../../../state/app/modules/timetable/bloc/timetable_bloc.dart';
import '../data/arbitrary_appointment.dart';
import '../widgets/commute/commute_details_sheet.dart';
import 'custom_event_sheet.dart';
import 'webuntis_lesson_sheet.dart';
@@ -19,6 +20,8 @@ class AppointmentDetailsDispatcher {
webuntis: (lesson) =>
WebuntisLessonSheet.show(context, bloc, appointment, lesson),
custom: (event) => CustomEventSheet.show(context, event),
commute: (trip, direction) =>
showCommuteDetailsSheet(context, trip: trip, direction: direction),
);
}
}