about_me_page.dart 609 B

12345678910111213141516171819202122232425
  1. import 'package:flutter/material.dart';
  2. /// Description: 关于我们
  3. /// Time : 04/28/2023 Friday
  4. /// Author : liuyuqi.gov@msn.cn
  5. class AboutMePage extends StatefulWidget {
  6. const AboutMePage({super.key});
  7. @override
  8. State<AboutMePage> createState() => _AboutMePageState();
  9. }
  10. class _AboutMePageState extends State<AboutMePage> {
  11. @override
  12. Widget build(BuildContext context) {
  13. return Scaffold(
  14. appBar: AppBar(actions: [
  15. IconButton(
  16. icon: const Icon(Icons.logout),
  17. onPressed: () {},
  18. )
  19. ]),
  20. body: const Text("about me page"),);
  21. }
  22. }