liuyuqi-dellpc 1 year ago
parent
commit
1063169f7a
4 changed files with 13 additions and 6 deletions
  1. 1 1
      lib/main.dart
  2. 3 3
      lib/models/config.dart
  3. 8 1
      lib/routes.dart
  4. 1 1
      pubspec.yaml

+ 1 - 1
lib/main.dart

@@ -37,7 +37,7 @@ class MyApp extends StatelessWidget {
   @override
   Widget build(BuildContext context) {
     return MaterialApp(
-      title: 'Flutter Demo',
+      title: 'Habit',
       debugShowCheckedModeBanner: false,
       theme: ThemeData(
         primarySwatch: Provider.of<ThemeProvider>(context).currentMaterialColor,

+ 3 - 3
lib/models/config.dart

@@ -1,6 +1,6 @@
-/// Description: config 
+/// Description: config
 /// Time       : 08/18/2023 Friday
 /// Author     : liuyuqi.gov@msn.cn
 class Config {
-  
-}
+  // theme
+}

+ 8 - 1
lib/routes.dart

@@ -1,4 +1,11 @@
+/// Description: routes
+/// Time       : 08/18/2023 Friday
+/// Author     : liuyuqi.gov@msn.cn
 class Routes {
   static const String home = "/home";
-  static const String loading = "/loading";
+  static const String splash = "/splash";
+
+  static void onGenerateRoute(){
+
+  }
 }

+ 1 - 1
pubspec.yaml

@@ -1,6 +1,6 @@
 name: flutter_habit
 description: A new Flutter application.
-version: 1.1.2+1
+version: 1.2.2+1
 
 environment:
   sdk: ">=2.7.0 <3.0.0"