Browse Source

支持最新Flutter 3.3.9版本

JalorOMEN 1 year ago
parent
commit
91077c9ded
3 changed files with 111 additions and 119 deletions
  1. 7 11
      README.md
  2. 101 105
      lib/GamePage.dart
  3. 3 3
      lib/utils/TipsDialog.dart

+ 7 - 11
README.md

@@ -1,16 +1,12 @@
 # gobang
 # gobang
 
 
-A new Flutter project.
+设计模式实验作业五
 
 
-## Getting Started
+设计成员:陈家乐、叶晟澄、毛杨哲
 
 
-This project is a starting point for a Flutter application.
+项目结构:
 
 
-A few resources to get you started if this is your first Flutter project:
-
-- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)
-- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)
-
-For help getting started with Flutter, view our
-[online documentation](https://flutter.dev/docs), which offers tutorials,
-samples, guidance on mobile development, and a full API reference.
+* Android工程
+* iOS工程
+* lib核心源代码
+* Web工程

+ 101 - 105
lib/GamePage.dart

@@ -93,114 +93,110 @@ class GamePageState extends State<GamePage> {
                 begin: FractionalOffset.topCenter,
                 begin: FractionalOffset.topCenter,
                 end: FractionalOffset.bottomCenter,
                 end: FractionalOffset.bottomCenter,
                 tileMode: TileMode.repeated)),
                 tileMode: TileMode.repeated)),
-        child: ListView(
-          children: [
-            Center(
-              child: Column(
-                  mainAxisAlignment: MainAxisAlignment.center,
-                  crossAxisAlignment: CrossAxisAlignment.center,
-                  mainAxisSize: MainAxisSize.max,
-                  children: <Widget>[
-                    Padding(
-                      padding: EdgeInsets.only(top: 14, bottom: 30),
-                      child: Text(
-                        _viewModel.state,
-                        style: TextStyle(color: Colors.white),
-                      ),
-                    ),
-                    GestureDetector(
-                        onTapDown: (topDownDetails) {
-                          var position = topDownDetails.localPosition;
-                          Chess chess = _viewModel.play(currentShape == circle);
-                          setState(() {
-                            ChessPainter._position =
-                                Position(position.dx, position.dy, chess);
-                          });
-                        },
-                        child: Stack(
-                          children: [
-                            CustomPaint(
-                              size: Size(width, width),
-                              painter: CheckerBoardPainter(),
-                            ),
-                            CustomPaint(
-                              size: Size(width, width),
-                              painter: ChessPainter(turnAi),
-                            )
-                          ],
-                        )),
-                    Padding(
-                      padding: const EdgeInsets.only(top: 16.0),
-                      child: Row(
-                        mainAxisAlignment: MainAxisAlignment.center,
-                        children: [
-                          IconButton(
-                              onPressed: () {
-                                if (_viewModel.undo()) {
-                                  _originator.undo();
-                                  Ai.getInstance().init();
-                                  for (Position po in _originator.state) {
-                                    Ai.getInstance().addChessman(
-                                        po.dx ~/ (width / 15),
-                                        po.dy ~/ (width / 15),
-                                        po.chess is WhiteChess ? 1 : -1);
-                                  }
-                                  setState(() {});
-                                } else {
-                                  TipsDialog.show(context, "提示", "现阶段不能悔棋");
-                                }
-                              },
-                              icon: Icon(Icons.undo)),
-                          IconButton(
-                              onPressed: () {
-                                if (_viewModel.surrender()) {
-                                  TipsDialog.showByChoose(
-                                      context, "提示", "是否要投降并重新开局?", "是", "否",
-                                      (value) {
-                                    if (value) {
-                                      setState(() {
-                                        ChessPainter._position = null;
-                                        _originator.clean();
-                                        _viewModel.reset();
-                                        Ai.getInstance().init();
-                                      });
-                                    }
-                                    Navigator.pop(context);
+        child: Center(
+          child: Column(
+              mainAxisAlignment: MainAxisAlignment.center,
+              crossAxisAlignment: CrossAxisAlignment.center,
+              mainAxisSize: MainAxisSize.max,
+              children: <Widget>[
+                Padding(
+                  padding: EdgeInsets.only(top: 14, bottom: 30),
+                  child: Text(
+                    _viewModel.state,
+                    style: TextStyle(color: Colors.white),
+                  ),
+                ),
+                GestureDetector(
+                    onTapDown: (topDownDetails) {
+                      var position = topDownDetails.localPosition;
+                      Chess chess = _viewModel.play(currentShape == circle);
+                      setState(() {
+                        ChessPainter._position =
+                            Position(position.dx, position.dy, chess);
+                      });
+                    },
+                    child: Stack(
+                      children: [
+                        CustomPaint(
+                          size: Size(width, width),
+                          painter: CheckerBoardPainter(),
+                        ),
+                        CustomPaint(
+                          size: Size(width, width),
+                          painter: ChessPainter(turnAi),
+                        )
+                      ],
+                    )),
+                Padding(
+                  padding: const EdgeInsets.only(top: 16.0),
+                  child: Row(
+                    mainAxisAlignment: MainAxisAlignment.center,
+                    children: [
+                      IconButton(
+                          onPressed: () {
+                            if (_viewModel.undo()) {
+                              _originator.undo();
+                              Ai.getInstance().init();
+                              for (Position po in _originator.state) {
+                                Ai.getInstance().addChessman(
+                                    po.dx ~/ (width / 15),
+                                    po.dy ~/ (width / 15),
+                                    po.chess is WhiteChess ? 1 : -1);
+                              }
+                              setState(() {});
+                            } else {
+                              TipsDialog.show(context, "提示", "现阶段不能悔棋");
+                            }
+                          },
+                          icon: Icon(Icons.undo)),
+                      IconButton(
+                          onPressed: () {
+                            if (_viewModel.surrender()) {
+                              TipsDialog.showByChoose(
+                                  context, "提示", "是否要投降并重新开局?", "是", "否",
+                                  (value) {
+                                if (value) {
+                                  setState(() {
+                                    ChessPainter._position = null;
+                                    _originator.clean();
+                                    _viewModel.reset();
+                                    Ai.getInstance().init();
                                   });
                                   });
-                                } else {
-                                  TipsDialog.show(context, "提示", "现阶段不能投降");
                                 }
                                 }
-                              },
-                              icon: Icon(
-                                Icons.sports_handball,
-                                color: Colors.deepPurple,
-                              )),
-                          IconButton(
-                              onPressed: () {
-                                TipsDialog.showByChoose(
-                                    context, "提示", "是否重新开局?", "是", "否",
-                                    (value) {
-                                  if (value) {
-                                    setState(() {
-                                      ChessPainter._position = null;
-                                      _originator.clean();
-                                      _viewModel.reset();
-                                      Ai.getInstance().init();
-                                    });
-                                  }
-                                  Navigator.pop(context);
+                                Navigator.pop(context);
+                              });
+                            } else {
+                              TipsDialog.show(context, "提示", "现阶段不能投降");
+                            }
+                          },
+                          icon: Icon(
+                            Icons.sports_handball,
+                            color: Colors.deepPurple,
+                          )),
+                      IconButton(
+                          onPressed: () {
+                            TipsDialog.showByChoose(
+                                context, "提示", "是否重新开局?", "是", "否",
+                                (value) {
+                              if (value) {
+                                setState(() {
+                                  ChessPainter._position = null;
+                                  _originator.clean();
+                                  _viewModel.reset();
+                                  Ai.getInstance().init();
                                 });
                                 });
-                              },
-                              icon: Icon(
-                                Icons.restart_alt,
-                                color: Colors.indigo,
-                              )),
-                        ],
-                      ),
-                    ),
-                  ]),
-            ),
-          ],
+                              }
+                              Navigator.pop(context);
+                            });
+                          },
+                          icon: Icon(
+                            Icons.restart_alt,
+                            color: Colors.indigo,
+                          )),
+                    ],
+                  ),
+                ),
+              ]),
         ),
         ),
       ),
       ),
     );
     );

+ 3 - 3
lib/utils/TipsDialog.dart

@@ -16,7 +16,7 @@ class TipsDialog{
             ),
             ),
           ),
           ),
           actions: <Widget>[
           actions: <Widget>[
-            new FlatButton(
+            new TextButton(
               child: new Text('确定'),
               child: new Text('确定'),
               onPressed: () {
               onPressed: () {
                 Navigator.of(context).pop();
                 Navigator.of(context).pop();
@@ -62,13 +62,13 @@ class TipsDialog{
             ),
             ),
           ),
           ),
           actions: <Widget>[
           actions: <Widget>[
-            new FlatButton(
+            new TextButton(
               child: new Text(no),
               child: new Text(no),
               onPressed: () {
               onPressed: () {
                 f(false);
                 f(false);
               },
               },
             ),
             ),
-            new FlatButton(
+            new TextButton(
               child: new Text(yes),
               child: new Text(yes),
               onPressed: () {
               onPressed: () {
                 f(true);
                 f(true);