summaryrefslogtreecommitdiff
path: root/lib/routes.dart
diff options
context:
space:
mode:
Diffstat (limited to 'lib/routes.dart')
-rw-r--r--lib/routes.dart2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/routes.dart b/lib/routes.dart
index 7b64e9c..5f5d192 100644
--- a/lib/routes.dart
+++ b/lib/routes.dart
@@ -8,6 +8,7 @@ import 'package:pmsna1/screens/map_screen.dart';
import 'package:pmsna1/screens/new_event_screen.dart';
import 'package:pmsna1/screens/new_post_screen.dart';
import 'package:pmsna1/screens/onboarding_screen.dart';
+import 'package:pmsna1/screens/popular_detail_screen.dart';
import 'package:pmsna1/screens/popular_screen.dart';
import 'screens/login_screen.dart';
@@ -26,6 +27,7 @@ Map<String, WidgetBuilder> getApplicationRoutes() {
'/albums': (BuildContext context) => const AlbumsScreen(),
'/album': (BuildContext context) => const AlbumDetailScreen(),
'/favorites': (BuildContext context) => const FavoritesScreen(),
+ '/popular_detail': (BuildContext context) => const PopularDetailScreen(),
'/map': (BuildContext context) => const MapSample(),
};
}