Files
fitnote/lib/pages/history_page.dart

16 lines
351 B
Dart

import 'package:flutter/material.dart';
class HistoryPage extends StatefulWidget {
const HistoryPage({super.key});
@override
State<HistoryPage> createState() => _HistoryPageState();
}
class _HistoryPageState extends State<HistoryPage> {
@override
Widget build(BuildContext context) {
return Center(child: Text('历史记录'));
}
}