Skip to content

Instantly share code, notes, and snippets.

@dllewellyn
Created November 26, 2019 06:42
Show Gist options
  • Save dllewellyn/dd8746fbd7234b605fee0f85a172f2cd to your computer and use it in GitHub Desktop.
Save dllewellyn/dd8746fbd7234b605fee0f85a172f2cd to your computer and use it in GitHub Desktop.
class MyHomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
body: ListView(
children: mockAccount()
.map((account) => AccountListItem(
accountData: account,
))
.toList(),
));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment