Skip to content

Instantly share code, notes, and snippets.

@Zfinix
Created May 24, 2019 14:07
Show Gist options
  • Save Zfinix/53738b733d9a3af8eb6e06b5128d45e0 to your computer and use it in GitHub Desktop.
Save Zfinix/53738b733d9a3af8eb6e06b5128d45e0 to your computer and use it in GitHub Desktop.
...
_buildTitle() => Row(
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
Row(
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
Text(
'D E B I T',
style: TextStyle(
color: Colors.white,
fontSize: 11,
fontWeight: FontWeight.w200),
),
],
),
customYMargin(35),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
'$amount',
style: TextStyle(
color: Colors.white,
fontSize: 27,
fontFamily: 'Roboto',
fontWeight: FontWeight.w400),
),
],
),
customYMargin(40),
],
);
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment