Skip to content

Instantly share code, notes, and snippets.

@felangel
Created April 27, 2019 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felangel/8858129b43fd03cfb4ac32e3c8f1da68 to your computer and use it in GitHub Desktop.
Save felangel/8858129b43fd03cfb4ac32e3c8f1da68 to your computer and use it in GitHub Desktop.
[flutter_firebase_login] Splash Screen
import 'package:flutter/material.dart';
class SplashScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(child: Text('Splash Screen')),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment