16 lines
351 B
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('历史记录'));
|
|
}
|
|
}
|