1234567891011121314151617181920 |
- import 'package:flutter/material.dart';
- /// Description: splash page
- /// Time : 01/23/2024 Tuesday
- /// 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(
- body: Text("splash page"),
- );
- }
- }
|