diff --git a/lib/arrival_fetch.dart b/lib/arrival_fetch.dart index 6cccb8d..e7bd392 100644 --- a/lib/arrival_fetch.dart +++ b/lib/arrival_fetch.dart @@ -15,7 +15,7 @@ Future> fetchArrivals() async { // })); Iterable I = json.decode(response.body); List arrivals = List.from(I.map((model)=>Arrival.fromJson(model))); - return arrivals; + return arrivals.reversed.toList(); } else { throw Exception('Failed to load Arrival'); }