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/moment.dart Normal file
View File

@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
class MomentPage extends StatefulWidget {
const MomentPage({super.key});
@override
State<MomentPage> createState() => _MomentPage();
}
class _MomentPage extends State<MomentPage>{
@override
Widget build(BuildContext context) {
return const Center(child: Text("朋友圈"));
}
}