Skip to content

Instantly share code, notes, and snippets.

@pologonzalo
Created September 9, 2018 07:50
Show Gist options
  • Save pologonzalo/7b4e20bc76614aca09f3f29e140c3aa6 to your computer and use it in GitHub Desktop.
Save pologonzalo/7b4e20bc76614aca09f3f29e140c3aa6 to your computer and use it in GitHub Desktop.
Widget _buildButtons() {
return Padding(
padding: const EdgeInsets.only(bottom: 40.0),
child: new Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
FlatButton(
onPressed: () {},
child: Text(
'Log In',
style: TextStyle(color: Colors.white),
),
),
FlatButton(
onPressed: () {},
child: Text(
'Sign Up',
style: TextStyle(color: Colors.white),
),
),
],
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment