Skip to content

Instantly share code, notes, and snippets.

@pologonzalo
Created September 9, 2018 07:44
Show Gist options
  • Save pologonzalo/7b368831582f3550e11dce30fd1ad2a8 to your computer and use it in GitHub Desktop.
Save pologonzalo/7b368831582f3550e11dce30fd1ad2a8 to your computer and use it in GitHub Desktop.
Widget _buildHeader() {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 80.0, horizontal: 24.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
Text(
'Explore',
style: TextStyle(fontSize: 24.0, fontWeight: FontWeight.w600),
),
SizedBox(
height: 5.0,
),
Text(
'new amazing countries',
style: TextStyle(fontSize: 20.0, fontWeight: FontWeight.w100),
)
],
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment