Skip to content

Instantly share code, notes, and snippets.

@felangel
Created October 24, 2018 05:58
Show Gist options
  • Save felangel/bb62f0fbd535abc59688445684b62501 to your computer and use it in GitHub Desktop.
Save felangel/bb62f0fbd535abc59688445684b62501 to your computer and use it in GitHub Desktop.
[flutter_login] Splash Page
import 'package:flutter/material.dart';
class SplashPage 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