Skip to content

Instantly share code, notes, and snippets.

@Zfinix
Created May 24, 2019 14:08
Show Gist options
  • Save Zfinix/255f435ee53da72e68618f94d86e06df to your computer and use it in GitHub Desktop.
Save Zfinix/255f435ee53da72e68618f94d86e06df to your computer and use it in GitHub Desktop.
...
_buildExpiry() =>
Row(mainAxisAlignment: MainAxisAlignment.spaceBetween, children: <Widget>[
Column(crossAxisAlignment: CrossAxisAlignment.end, children: <Widget>[
Text(
'EXPIRES',
style: TextStyle(
fontSize: 12, color: Colors.white, fontWeight: FontWeight.w200),
),
yMargin5,
Text(
'$expiry',
style: TextStyle(
color: Colors.white,
fontFamily: 'OCRAEXT',
fontSize: 14.4,
fontWeight: FontWeight.w600),
),
])
]);
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment