about_page.dart 465 B

123456789101112131415161718192021
  1. import 'package:flutter/material.dart';
  2. /// Description: 关于界面
  3. /// Time : 04/30/2023 Sunday
  4. /// Author : liuyuqi.gov@msn.cn
  5. class AboutPage extends StatefulWidget {
  6. AboutPage({Key? key}) : super(key: key);
  7. @override
  8. _AboutPageState createState() => _AboutPageState();
  9. }
  10. class _AboutPageState extends State<AboutPage> {
  11. @override
  12. Widget build(BuildContext context) {
  13. return Container(
  14. child: Text("About Me"),
  15. );
  16. }
  17. }