feat:初始化工程

This commit is contained in:
2025-06-29 22:45:02 +08:00
commit bb6874582f
131 changed files with 5053 additions and 0 deletions

15
lib/profile.dart Normal file
View File

@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
class ProfilePage extends StatefulWidget{
const ProfilePage({super.key});
@override
State<ProfilePage> createState() => _ProfilePage();
}
class _ProfilePage extends State<ProfilePage>{
@override
Widget build(BuildContext context) {
return const Center(child: Text("个人主页"));
}
}