home_page.dart 516 B

123456789101112131415161718192021222324
  1. import 'package:flutter/material.dart';
  2. /// Description: home page
  3. /// Time : 05/11/2023 Thursday
  4. /// Author : liuyuqi.gov@msn.cn
  5. class HomePage extends StatefulWidget {
  6. const HomePage({super.key});
  7. @override
  8. State<HomePage> createState() => _HomePageState();
  9. }
  10. class _HomePageState extends State<HomePage> {
  11. @override
  12. Widget build(BuildContext context) {
  13. return Scaffold(
  14. appBar: AppBar(
  15. actions: [],
  16. title: Text("xxx"),
  17. ),
  18. body: Text("x"),
  19. );
  20. }
  21. }