implemented RMV public transit module including trip search, station departures, and nearby stop lookup, added "Marianum Connect" API integration with bearer token authentication and auto-refresh logic, integrated geolocator for location-based station search, added persistent storage for favorite stations and recent trip queries, and implemented comprehensive UI for journey details, trip results, and disruption alerts
This commit is contained in:
@@ -11,6 +11,7 @@ import '../../../view/pages/holidays/holidays_view.dart';
|
||||
import '../../../view/pages/marianum_dates/marianum_dates_view.dart';
|
||||
import '../../../view/pages/marianum_message/marianum_message_list_view.dart';
|
||||
import '../../../view/pages/more/roomplan/roomplan.dart';
|
||||
import '../../../view/pages/rmv/rmv_view.dart';
|
||||
import '../../../view/pages/talk/chat_list.dart';
|
||||
import '../../../view/pages/timetable/timetable.dart';
|
||||
import '../../../widget/breaker/breaker.dart';
|
||||
@@ -126,6 +127,13 @@ class AppModule {
|
||||
breakerArea: BreakerArea.more,
|
||||
create: MarianumDatesView.new,
|
||||
),
|
||||
Modules.rmv: AppModule(
|
||||
Modules.rmv,
|
||||
name: 'RMV-Fahrplan',
|
||||
icon: () => Icon(Icons.directions_bus),
|
||||
breakerArea: BreakerArea.more,
|
||||
create: RmvView.new,
|
||||
),
|
||||
};
|
||||
|
||||
if (!showFiltered) {
|
||||
@@ -232,4 +240,5 @@ enum Modules {
|
||||
gradeAveragesCalculator,
|
||||
holidays,
|
||||
marianumDates,
|
||||
rmv,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user