about_me_page.dart 634 B

123456789101112131415161718192021222324252627
  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: Icon(Icons.logout),
  17. onPressed: () {},
  18. )
  19. ]),
  20. body: Container(
  21. child: const Text("home page"),
  22. ),);
  23. }
  24. }