splash_page.dart 460 B

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