Skip to content

Instantly share code, notes, and snippets.

@shubie
Last active January 20, 2019 10:42
Show Gist options
  • Save shubie/5d5b99b6891d247c509a6ae8c50a9d40 to your computer and use it in GitHub Desktop.
Save shubie/5d5b99b6891d247c509a6ae8c50a9d40 to your computer and use it in GitHub Desktop.
child: Column(
children: <Widget>[
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
IconButton(
icon: Icon(
Icons.menu,
color: Colors.white,
),
onPressed: () {},
),
Text("YOUR PORTFOLIO (24H)",
style: TextStyle(
color: Colors.white,
fontSize: 20.0,
fontWeight: FontWeight.w500)),
IconButton(
icon: Icon(
FontAwesomeIcons.bell,
color: Colors.white,
),
onPressed: () {},
)
],
),
SizedBox(height: 40),
Text(
"43,729.00",
style: TextStyle(
color: Colors.white,
fontSize: 45.0,
fontWeight: FontWeight.bold),
),
SizedBox(height: 20),
Text(
r"+ $3,157.67 (23%)",
style: TextStyle(
color: Colors.white,
fontSize: 18.0,
fontWeight: FontWeight.w300),
)
],
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment