import 'package:flutter/material.dart'; /// Description: splash page /// Time : 10/11/2023 Wednesday /// Author : liuyuqi.gov@msn.cn class SplashPage extends StatefulWidget { const SplashPage({super.key}); @override State createState() => _SplashPageState(); } class _SplashPageState extends State { @override Widget build(BuildContext context) { return const Scaffold( backgroundColor: Colors.black, body: Center( child: Text( '死了么', style: TextStyle( color: Colors.white, fontSize: 30, ), ), ), ); } void goMain(){ Navigator.of(context).pushReplacementNamed('/home'); } }