feat:增加图表组件

This commit is contained in:
2025-07-13 22:00:55 +08:00
parent 55ca36cba2
commit 8a1b507166
14 changed files with 464 additions and 218 deletions

15
lib/views/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("个人主页"));
}
}