Skip to content

Instantly share code, notes, and snippets.

@shubie
Created January 3, 2019 15:32
Show Gist options
  • Save shubie/9e14e325976cc574a37ee81cd6287a27 to your computer and use it in GitHub Desktop.
Save shubie/9e14e325976cc574a37ee81cd6287a27 to your computer and use it in GitHub Desktop.
displayAccoutList() {
return Container(
margin: EdgeInsets.all(15.0),
child: Column(
children: <Widget>[
accountItems("Trevello App", r"+ $ 4,946.00", "28-04-16", "credit",
oddColour: const Color(0xFFF7F7F9)),
accountItems(
"Creative Studios", r"+ $ 5,428.00", "26-04-16", "credit"),
accountItems("Amazon EU", r"+ $ 746.00", "25-04-216", "Payment",
oddColour: const Color(0xFFF7F7F9)),
accountItems(
"Creative Studios", r"+ $ 14,526.00", "16-04-16", "Payment"),
accountItems(
"Book Hub Society", r"+ $ 2,876.00", "04-04-16", "Credit",
oddColour: const Color(0xFFF7F7F9)),
],
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment