Skip to content

Instantly share code, notes, and snippets.

@hitherejoe
Last active September 23, 2018 06:16
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 hitherejoe/033f7ce3ea6f4b54cd63760fb3025cf6 to your computer and use it in GitHub Desktop.
Save hitherejoe/033f7ce3ea6f4b54cd63760fb3025cf6 to your computer and use it in GitHub Desktop.
class SplashScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Container(
color: Colors.white,
child: new Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new CircularProgressIndicator(),
],
));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment