jianboy 1 year ago
parent
commit
6b80ad1b43
3 changed files with 4 additions and 2 deletions
  1. 1 1
      lib/pages/about_me_page.dart
  2. 1 1
      lib/pages/guide_page.dart
  3. 2 0
      lib/routes.dart

+ 1 - 1
lib/pages/about_me_page.dart

@@ -21,7 +21,7 @@ class _AboutMePageState extends State<AboutMePage> {
         )
       ]),
       body: Container(
-        child: const Text("home page"),
+        child: const Text("about me page"),
       ),);
   }
 }

+ 1 - 1
lib/pages/guide_page.dart

@@ -14,7 +14,7 @@ class _GuidePageState extends State<GuidePage> {
   @override
   Widget build(BuildContext context) {
     return const Scaffold(
-      body: Text("x"),
+      body: Text("guide page"),
     );
   }
 }

+ 2 - 0
lib/routes.dart

@@ -10,6 +10,8 @@ class Routes {
   static const String register = '/register';
   static const String logout = '/logout';
   static const String splash = '/splash';
+  static const String guide = '/guide';
+  static const String chat = '/chat';
 
   static Route onGenerateRoute(RouteSettings settings) {
     switch (settings.name) {