第一次提交

This commit is contained in:
2026-03-09 23:56:08 +08:00
parent 9395dfd38b
commit aad3c251a5
131 changed files with 4853 additions and 1 deletions

22
lib/pages/main/index.dart Normal file
View File

@@ -0,0 +1,22 @@
import "package:flutter/material.dart";
class MainPage extends StatefulWidget {
const MainPage({super.key});
@override
State<MainPage> createState() => _MainPageState();
}
class _MainPageState extends State<MainPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Main Page"),
),
body: Center(
child: Text("This is the main page."),
),
);
}
}