Skip to content

Instantly share code, notes, and snippets.

@pologonzalo
Last active September 9, 2018 07:34
Show Gist options
  • Save pologonzalo/5d78519491d3962c9a0b6c1758fa1647 to your computer and use it in GitHub Desktop.
Save pologonzalo/5d78519491d3962c9a0b6c1758fa1647 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
/* ====================================================== */
/* Widgets */
/* ====================================================== */
import 'package:travel_pal/screens/splash/widgets/splash_button_widget.dart';
/* ====================================================== */
/* Implementation */
/* ====================================================== */
class Splash extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Scaffold(
body: new Stack(children: <Widget>[
_buildBackground(),
new Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[_buildHeader(), _buildButtons()],
)
]),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment