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 7510075..81bf833 100644
--- a/lib/routes.dart
+++ b/lib/routes.dart
@@ -2,6 +2,7 @@ import 'package:flutter/material.dart';
import 'package:pmsna1/screens/dashboard_screen.dart';
import 'package:pmsna1/screens/new_post_screen.dart';
import 'package:pmsna1/screens/onboarding_screen.dart';
+import 'package:pmsna1/screens/popular_screen.dart';
import 'screens/login_screen.dart';
import 'screens/register_screen.dart';
@@ -13,5 +14,6 @@ Map<String, WidgetBuilder> getApplicationRoutes() {
'/onboard': (BuildContext context) => const OnboardingScreen(),
'/dash': (BuildContext context) => const DashboardScreen(),
'/new': (BuildContext context) => const NewPostScreen(),
+ '/popular': (BuildContext context) => const PopularScreen(),
};
}