Skip to content

Instantly share code, notes, and snippets.

@Zfinix
Created May 24, 2019 14:07
Show Gist options
  • Save Zfinix/b34f940d97f74c2dc82fbf9b626b7417 to your computer and use it in GitHub Desktop.
Save Zfinix/b34f940d97f74c2dc82fbf9b626b7417 to your computer and use it in GitHub Desktop.
...
_buildName() => Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text(
'CARD HOLDER',
style: TextStyle(
fontSize: 12,
color: Colors.white,
fontWeight: FontWeight.w200),
),
yMargin5,
Text(
'$name',
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