import 'package:flutter/material.dart'; /// Description: home page /// Time : 08/09/2023 Wednesday /// 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(title: const Text('Home Page')), body: const Placeholder()); } /// check update void checkUpdate(){ } }