splash.dart 414 B

123456789101112131415161718
  1. import 'package:flutter/material.dart';
  2. class SplashPage extends StatelessWidget{
  3. @override
  4. Widget build(BuildContext context) {
  5. return Scaffold(
  6. appBar: AppBar(title: Text('开屏页'),),
  7. body: RaisedButton(
  8. color: Colors.blue,
  9. child: Text('跳转到首页'),
  10. onPressed: (){
  11. Navigator.pushReplacementNamed(context, '/home');
  12. },
  13. ),
  14. );
  15. }
  16. }