123456789101112131415161718192021222324252627282930313233 |
- 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<SplashPage> createState() => _SplashPageState();
- }
- class _SplashPageState extends State<SplashPage> {
- @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');
- }
- }
|