绘制点集

This commit is contained in:
toly
2023-05-06 08:23:51 +08:00
parent 82cf031835
commit 81d001c3ef
3 changed files with 94 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ import 'package:flutter/material.dart';
import 'counter/counter_page.dart';
import 'guess/guess_page.dart';
import 'muyu/muyu_page.dart';
import 'paper/paper.dart';
void main() {
runApp(const MyApp());
@@ -19,7 +20,7 @@ class MyApp extends StatelessWidget {
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MuyuPage(),
home: const Paper(),
);
}
}