12345678910111213141516171819202122232425 |
- import 'package:flutter/material.dart';
- /// Description: 关于我们
- /// Time : 04/28/2023 Friday
- /// Author : liuyuqi.gov@msn.cn
- class AboutMePage extends StatefulWidget {
- const AboutMePage({super.key});
- @override
- State<AboutMePage> createState() => _AboutMePageState();
- }
- class _AboutMePageState extends State<AboutMePage> {
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- appBar: AppBar(actions: [
- IconButton(
- icon: const Icon(Icons.logout),
- onPressed: () {},
- )
- ]),
- body: const Text("about me page"),);
- }
- }
|