Created
January 3, 2019 15:32
-
-
Save shubie/9e14e325976cc574a37ee81cd6287a27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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