aboutsummaryrefslogtreecommitdiff
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 a2ad16e..ae7ac12 100644
--- a/lib/routes.dart
+++ b/lib/routes.dart
@@ -1,5 +1,6 @@
import 'package:flutter/material.dart';
import 'package:linkchat/screens/chat_screen.dart';
+import 'package:linkchat/screens/favorites_screen.dart';
import 'package:linkchat/screens/new_chat_screen.dart';
import 'screens/dashboard_screen.dart';
@@ -15,5 +16,6 @@ Map<String, WidgetBuilder> getApplicationRoutes() {
'/dash': (BuildContext context) => const DashboardScreen(),
'/new': (BuildContext context) => const NewChatScreen(),
'/chat': (BuildContext context) => const ChatScreen(),
+ '/favorites': (BuildContext context) => const FavoritesScreen(),
};
}