import 'package:flutter/material.dart'; /// Description: home page /// Time : 05/11/2023 Thursday /// Author : liuyuqi.gov@msn.cn class HomePage extends StatefulWidget { const HomePage({super.key}); @override State createState() => _HomePageState(); } class _HomePageState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( actions: const [], title: const Text("xxx"), ), body: const Text("x"), ); } }