1234567891011121314151617181920212223 |
- import 'package:flutter/material.dart';
- /// 闪屏页 3s之后进入主页
- class SplashPage extends StatefulWidget {
- @override
- State<StatefulWidget> createState() {
- return _SplashPageState();
- }
- }
- class _SplashPageState extends State<SplashPage> {
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- appBar: AppBar(
- title: Text("Splash"),
- ),
- body: Container(
- alignment: Alignment.topCenter,
- ),
- );
- }
- }
|