splash_page.dart 734 B

123456789101112131415161718192021222324252627282930313233
  1. import 'package:flutter/material.dart';
  2. /// Description: splash page
  3. /// Time : 10/11/2023 Wednesday
  4. /// Author : liuyuqi.gov@msn.cn
  5. class SplashPage extends StatefulWidget {
  6. const SplashPage({super.key});
  7. @override
  8. State<SplashPage> createState() => _SplashPageState();
  9. }
  10. class _SplashPageState extends State<SplashPage> {
  11. @override
  12. Widget build(BuildContext context) {
  13. return const Scaffold(
  14. backgroundColor: Colors.black,
  15. body: Center(
  16. child: Text(
  17. '死了么',
  18. style: TextStyle(
  19. color: Colors.white,
  20. fontSize: 30,
  21. ),
  22. ),
  23. ),
  24. );
  25. }
  26. void goMain(){
  27. Navigator.of(context).pushReplacementNamed('/home');
  28. }
  29. }