splash_page.dart 464 B

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