Skip to content

Instantly share code, notes, and snippets.

@trey-rosius
Last active January 24, 2019 06:40
Show Gist options
  • Select an option

  • Save trey-rosius/3597584ce44e9d31497a591aa73777ab to your computer and use it in GitHub Desktop.

Select an option

Save trey-rosius/3597584ce44e9d31497a591aa73777ab to your computer and use it in GitHub Desktop.
Padding(
padding: const EdgeInsets.only(left: 8.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.end,
children: <Widget>[
Row(
children: <Widget>[
Text(
"\$84",
style: TextStyle(
fontSize: 24.0,
color: Colors.white,
fontWeight: FontWeight.bold),
),
Padding(
padding: const EdgeInsets.only(top: 5.0),
child: Text(
".99",
style:
TextStyle(fontSize: 14.0, color: Colors.white),
),
)
],
),
],
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment