feat:增加图表组件
This commit is contained in:
15
lib/views/moment.dart
Normal file
15
lib/views/moment.dart
Normal 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("朋友圈"));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user