You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
327B

  1. import 'package:flutter/material.dart';
  2. class SplashPage extends StatelessWidget {
  3. static Route route() {
  4. return MaterialPageRoute<void>(builder: (_) => SplashPage());
  5. }
  6. @override
  7. Widget build(BuildContext context) {
  8. return const Scaffold(
  9. body: Center(child: CircularProgressIndicator()),
  10. );
  11. }
  12. }