splash_page.dart 477 B

1234567891011121314151617181920212223
  1. import 'package:flutter/material.dart';
  2. /// 闪屏页 3s之后进入主页
  3. class SplashPage extends StatefulWidget {
  4. @override
  5. State<StatefulWidget> createState() {
  6. return _SplashPageState();
  7. }
  8. }
  9. class _SplashPageState extends State<SplashPage> {
  10. @override
  11. Widget build(BuildContext context) {
  12. return Scaffold(
  13. appBar: AppBar(
  14. title: Text("Splash"),
  15. ),
  16. body: Container(
  17. alignment: Alignment.topCenter,
  18. ),
  19. );
  20. }
  21. }