木鱼静态界面

This commit is contained in:
toly
2023-04-28 21:53:12 +08:00
parent a2d2b18c1f
commit 7d6ac80040
5 changed files with 118 additions and 33 deletions

View File

@@ -2,6 +2,7 @@ import 'package:flutter/material.dart';
import 'counter/counter_page.dart';
import 'guess/guess_page.dart';
import 'muyu/muyu_page.dart';
void main() {
runApp(const MyApp());
@@ -18,7 +19,7 @@ class MyApp extends StatelessWidget {
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const GuessPage(title: '猜数字'),
home: const MuyuPage(),
);
}
}