liuyuqi-dellpc 1 year ago
parent
commit
c5ba5bdd3e

+ 6 - 3
lib/main.dart

@@ -1,9 +1,11 @@
-
 import 'package:flutter/material.dart';
 import 'package:flutter/services.dart';
-
+import 'package:gobang/pages/splash/splash_page.dart';
 import 'pages/home_page.dart';
 
+/// Description: enter point
+/// Time       : 02/21/2024 Wednesday
+/// Author     : liuyuqi.gov@msn.cn
 void main() {
   WidgetsFlutterBinding.ensureInitialized();
   runApp(MyApp());
@@ -17,6 +19,7 @@ void main() {
 
 class MyApp extends StatelessWidget {
   // This widget is the root of your application.
+  
   @override
   Widget build(BuildContext context) {
     return MaterialApp(
@@ -25,7 +28,7 @@ class MyApp extends StatelessWidget {
       theme: ThemeData(
         primarySwatch: Colors.blue,
       ),
-      home: HomePage(),
+      home: SpalshPage(),
     );
   }
 }

+ 3 - 2
lib/model/config.dart

@@ -1,4 +1,3 @@
-
 /// Description: global config
 /// Time       : 02/20/2024 Tuesday
 /// Author     : liuyuqi.gov@msn.cn
@@ -14,6 +13,8 @@ class Config {
   static const double dessignWidth = 375.0;
   static const double dessignHeight = 1335.0;
 
+  // style
 
-
+  // assets register
+  
 }

+ 21 - 0
lib/model/user_model.dart

@@ -0,0 +1,21 @@
+/// Description: user model
+/// Time       : 02/21/2024 Wednesday
+/// Author     : liuyuqi.gov@msn.cn
+class UserModel {
+  String username = "";
+  String password = "";
+
+  UserModel({required this.username, required this.password});
+
+  UserModel.fromJson(Map<String, dynamic> json) {
+    username = json['username'];
+    password = json['password'];
+  }
+
+  Map<String, dynamic> toJson() {
+    final Map<String, dynamic> data = <String, dynamic>{};
+    data['username'] = username;
+    data['password'] = password;
+    return data;
+  }
+}

+ 67 - 0
lib/pages/index_page.dart

@@ -0,0 +1,67 @@
+import 'package:flutter/material.dart';
+import 'package:gobang/pages/home_page.dart';
+import 'package:gobang/pages/mine_page.dart';
+
+/// Description: index page
+/// Time       : 02/21/2024 Wednesday
+/// Author     : liuyuqi.gov@msn.cn
+class IndexPage extends StatefulWidget {
+  const IndexPage({Key? key}) : super(key: key);
+
+  @override
+  State<IndexPage> createState() => _IndexPageState();
+}
+
+class _IndexPageState extends State<IndexPage> {
+  final List<BottomNavigationBarItem> bottomTabs = const [
+    BottomNavigationBarItem(icon: Icon(Icons.home), label: '出行'),
+    BottomNavigationBarItem(icon: Icon(Icons.business), label: '大厅'),
+    BottomNavigationBarItem(icon: Icon(Icons.school), label: '消息'),
+    BottomNavigationBarItem(icon: Icon(Icons.school), label: '我的'),
+  ];
+
+  final List<Widget> pages = [
+    HomePage(),
+    MinePage(),
+  ];
+
+  int currentIndex = 0;
+  Size get size => MediaQuery.of(context).size;
+  final pageController = PageController();
+
+  @override
+  Widget build(BuildContext context) {
+    return Scaffold(
+      appBar: AppBar(
+        actions: [Icon(Icons.search)],
+        title: Text("gobang"),
+      ),
+      // drawer: ,
+      bottomNavigationBar: BottomNavigationBar(
+        items: bottomTabs,
+        currentIndex: currentIndex,
+        type: BottomNavigationBarType.fixed,
+        onTap: (index) {
+          setState(() {
+            currentIndex = index;
+            pageController.jumpToPage(index);
+          });
+        },
+      ),
+      body: _getPageBody(context),
+    );
+  }
+
+  _getPageBody(BuildContext context) {
+    return PageView(
+      controller: pageController,
+      physics: const NeverScrollableScrollPhysics(),
+      onPageChanged: (index) {
+        setState(() {
+          currentIndex = index;
+        });
+      },
+      children: pages,
+    );
+  }
+}

+ 58 - 4
lib/pages/login_page.dart

@@ -1,6 +1,5 @@
-import 'package:flutter/src/foundation/key.dart';
-import 'package:flutter/src/widgets/framework.dart';
-import 'package:flutter/src/widgets/placeholder.dart';
+import 'package:flutter/material.dart';
+import 'package:gobang/service/user_dao.dart';
 
 /// Description: login page
 /// Time       : 02/20/2024 Tuesday
@@ -13,8 +12,63 @@ class LoginPage extends StatefulWidget {
 }
 
 class _LoginPageState extends State<LoginPage> {
+  TextEditingController userNameController = TextEditingController();
+  TextEditingController passwordController = TextEditingController();
+
   @override
   Widget build(BuildContext context) {
-    return const Placeholder();
+    return Scaffold(
+      body: Column(children: [
+        TextFormField(
+          controller: userNameController,
+          decoration: const InputDecoration(
+            hintText: "请输入用户名",
+          ),
+          validator: (v) {
+            if (v == null) {
+              return "用户名不能为空";
+            } else {
+              return v.trim().isNotEmpty ? null : "用户名不能为空";
+            }
+          },
+        ),
+        TextFormField(
+          controller: passwordController,
+          decoration: const InputDecoration(
+            hintText: "请输入密码",
+          ),
+          obscureText: true,
+          validator: (v) {
+            if (v == null) {
+              return "密码不能为空";
+            } else {
+              return v.trim().length > 6 ? null : "密码不能少于6位";
+            }
+          },
+        ),
+        ElevatedButton(
+          onPressed: () {
+            Navigator.of(context).pushNamedAndRemoveUntil(
+              "/",
+              (Route<dynamic> route) => false,
+            );
+          },
+          child: const Text("登录"),
+        ),
+      ]),
+    );
+  }
+
+  /// login
+  void login() async {
+    if (Form.of(context).validate()) {
+      await UserDao.login(userNameController.text, passwordController.text);
+    } else {
+      ScaffoldMessenger.of(context).showSnackBar(
+        const SnackBar(
+          content: Text("用户名或密码错误"),
+        ),
+      );
+    }
   }
 }

+ 4 - 4
lib/pages/about_page.dart → lib/pages/mine_page.dart

@@ -5,14 +5,14 @@ import 'package:flutter/src/widgets/placeholder.dart';
 /// Description: about page
 /// Time       : 02/20/2024 Tuesday
 /// Author     : liuyuqi.gov@msn.cn
-class AboutPage extends StatefulWidget {
-  const AboutPage({Key? key}) : super(key: key);
+class MinePage extends StatefulWidget {
+  const MinePage({Key? key}) : super(key: key);
 
   @override
-  State<AboutPage> createState() => _AboutPageState();
+  State<MinePage> createState() => _MinePageState();
 }
 
-class _AboutPageState extends State<AboutPage> {
+class _MinePageState extends State<MinePage> {
   @override
   Widget build(BuildContext context) {
     return const Placeholder();

+ 19 - 0
lib/pages/pay_page.dart

@@ -0,0 +1,19 @@
+import 'package:flutter/cupertino.dart';
+import 'package:flutter/foundation.dart';
+
+/// Description: pay page
+/// Time       : 02/21/2024 Wednesday
+/// Author     : liuyuqi.gov@msn.cn
+class PayPage extends StatefulWidget {
+  const PayPage({Key? key}) : super(key: key);
+
+  @override
+  State<PayPage> createState() => _PayPageState();
+}
+
+class _PayPageState extends State<PayPage> {
+  @override
+  Widget build(BuildContext context) {
+    return const Placeholder();
+  }
+}

+ 12 - 0
lib/pages/splash/splash_page.dart

@@ -1,7 +1,9 @@
 import 'package:flutter/material.dart';
 import 'package:gobang/pages/splash/countdown.dart';
+import 'package:gobang/routes.dart';
 
 /// Description: splash page
+/// 加载缓存ad pic,倒计时3秒,if login go index else go login page
 /// Time       : 02/20/2024 Tuesday
 /// Author     : liuyuqi.gov@msn.cn
 class SpalshPage extends StatefulWidget {
@@ -35,4 +37,14 @@ class _SpalshPageState extends State<SpalshPage> {
   void dispose() {
     super.dispose();
   }
+
+  @override
+  void didChangeDependencies() {
+    super.didChangeDependencies();
+    goMain();
+  }
+
+  void goMain() async {
+    Routes.popAndPushNamed(context, Routes.index);
+  }
 }

+ 57 - 0
lib/routes.dart

@@ -1,3 +1,60 @@
+import 'package:flutter/material.dart';
+import 'package:gobang/pages/home_page.dart';
+import 'package:gobang/pages/index_page.dart';
+import 'package:gobang/pages/login_page.dart';
+import 'package:gobang/pages/mine_page.dart';
+import 'package:gobang/pages/splash/splash_page.dart';
+
+/// Description: routes
+/// Time       : 02/21/2024 Wednesday
+/// Author     : liuyuqi.gov@msn.cn
 class Routes {
   static const String index = "/index";
+  static const String home = "/home";
+  static const String login = "/login";
+  static const String mine = "/mine";
+  static const String setting = "/mine/setting";
+  static const String pay = "/pay";
+  static const String splash = "/splash";
+
+  static MaterialPageRoute<dynamic> onGenerateRoute(RouteSettings settings) {
+    switch (settings.name) {
+      case home:
+        return MaterialPageRoute<dynamic>(
+          builder: (_) => HomePage(),
+        );
+      case index:
+        return MaterialPageRoute<dynamic>(
+          builder: (_) => IndexPage(),
+        );
+      case splash:
+        return MaterialPageRoute<dynamic>(
+          builder: (_) => const SpalshPage(),
+        );
+      case mine:
+        return MaterialPageRoute<dynamic>(
+          builder: (_) => const MinePage(),
+        );
+      case login:
+        return MaterialPageRoute<dynamic>(
+          builder: (_) => const LoginPage(),
+        );
+      default:
+        return MaterialPageRoute<dynamic>(
+          builder: (_) => const Scaffold(
+            body: Center(
+              child: Text("404"),
+            ),
+          ),
+        );
+    }
+  }
+
+  static void popAndPushNamed(BuildContext context, String routePath) {
+    Navigator.popAndPushNamed(context, routePath);
+  }
+
+  static void pushReplacementNamed(BuildContext context, String routePath) {
+    Navigator.pushReplacementNamed(context, routePath);
+  }
 }

+ 6 - 5
lib/service/user_dao.dart

@@ -1,3 +1,5 @@
+import 'package:gobang/model/user_model.dart';
+
 /// Description: user dao
 /// Time       : 02/20/2024 Tuesday
 /// Author     : liuyuqi.gov@msn.cn
@@ -5,11 +7,11 @@ class UserDao {
   /// login
   /// @param username
   /// @param password
-  /// @return Future<String> 
-  static Future<String> login(String username, String password) async {
+  /// @return Future<String>
+  static Future<UserModel> login(String username, String password) async {
     await Future.delayed(Duration(seconds: 2));
     if (username == 'admin' && password == 'admin') {
-      return 'token';
+      return UserModel.fromJson({"username": "admin", "password": "admin"});
     } else {
       throw Exception('username or password is incorrect');
     }
@@ -24,10 +26,9 @@ class UserDao {
   /// register
   /// @param username
   /// @param password
-  /// @return Future<String> 
+  /// @return Future<String>
   static Future<String> register(String username, String password) async {
     await Future.delayed(Duration(seconds: 2));
     return 'success';
   }
-
 }

+ 1 - 1
lib/viewModel/GameViewModel.dart

@@ -55,4 +55,4 @@ class GameViewModel {
   bool surrender() {
     return _userContext.surrender();
   }
-}
+}